Skip to content

HichemTab-tech/ts-runtime-picker

Repository files navigation

ts-runtime-picker

GitHub License NPM Version NPM Downloads GitHub Actions Workflow Status GitHub Release

ts-runtime-picker πŸš€ is a TypeScript-first utility package designed to dynamically transform your code and provide runtime-safe "pickers" for your objects based on TypeScript interfaces or types. The package integrates seamlessly into your Vite-based or Webpack-based projects, allowing developers to enjoy type-safe runtime logic without sacrificing development speed or flexibility.


πŸ› οΈ Problem and Solution

πŸ› The Problem

When working with JavaScript or TypeScript, developers often pass objects directly into functions, APIs, or databases (like Firebase). This can lead to unnecessary or unwanted properties being included. For example:

const request = {
    data: {
        firstName: "John",
        lastName: "Doe",
        email: "john.doe@example.com",
        password: "secret",
        extraField: "notNeeded",
        anotherExtraField: "stillNotNeeded"
    }
};

firebase.collection("users").add(request.data);

In this example, only firstName, lastName, email, and password might be relevant for the operation, but extraField and anotherExtraField are also sent, which could cause inefficiencies, validation errors, or unexpected behavior.

Even if you explicitly type request.data as User in TypeScript, the extra fields (extraField and anotherExtraField) still exist at runtime. TypeScript enforces types only at compile time, meaning that any additional or unwanted properties are not automatically removed:

interface User {
    firstName: string;
    lastName: string;
    email: string;
    password: string;
}

const request: { data: User } = {
    data: {
        firstName: "John",
        lastName: "Doe",
        email: "john.doe@example.com",
        password: "secret",
        extraField: "notNeeded", // This still exists at runtime
        anotherExtraField: "stillNotNeeded" // This too
    }
};

firebase.collection("users").add(request.data); // `extraField` and `anotherExtraField` are still sent!

Manually filtering the object to ensure it adheres to a defined interface is tedious and error-prone:

const filteredData = {
    firstName: request.data.firstName,
    lastName: request.data.lastName,
    email: request.data.email,
    password: request.data.password
};

firebase.collection("users").add(filteredData);

πŸ’‘ The Solution

ts-runtime-picker 🧰 solves this by automatically generating a picker function based on your TypeScript interface. This function ensures that only the properties defined in the interface are included in the object:

import { createPicker } from "ts-runtime-picker";

interface User {
    firstName: string;
    lastName: string;
    email: string;
    password: string;
}

const picker = createPicker<User>();
const filteredData = picker(request.data);

firebase.collection("users").add(filteredData);

The picker function dynamically removes unwanted properties, ensuring only the keys specified in User are included. This approach:

  • ⏳ Saves time by eliminating repetitive manual filtering.
  • βœ… Ensures runtime safety by aligning object properties with TypeScript interfaces.
  • 🐞 Reduces the risk of bugs and inefficiencies caused by sending unnecessary data.

πŸ“¦ Installation

To start using ts-runtime-picker, follow these steps:

1. Install the Package

npm install ts-runtime-picker

2. Add the Vite Plugin or Webpack Loader

Vite Plugin

In your vite.config.ts, import the plugin and include it in the plugins array:

import { defineConfig } from "vite";
import TsRuntimePickerVitePlugin from "ts-runtime-picker/vite-plugin";

export default defineConfig({
    plugins: [TsRuntimePickerVitePlugin()],
});

Webpack Loader

For projects using Webpack, you can integrate ts-runtime-picker with the following webpack loader.

module.exports = {
    //...
    module: {
        rules: [
            {
                test: /\.ts$/,
                use: [
                    {
                        loader: 'ts-loader',
                    },
                    {
                        loader: 'ts-runtime-picker/webpack-loader', // add the ts-runtime-picker webpack loader
                    },
                ],
                include: path.resolve(__dirname, 'src'),
                exclude: /node_modules/,
            },
        ],
    },
    resolve: {
        extensions: ['.ts', '.js'],
        fallback: {
            fs: false,
            path: false,
            os: false,
            perf_hooks: false,
        }
    },
    //...
}

✨ Usage

1. Define Your TypeScript Interface

Create a TypeScript interface that defines the structure of the object you want to pick keys from:

interface User {
    firstName: string;
    lastName: string;
    email: string;
    password: string;
}

2. Use createPicker

Call the createPicker function with your TypeScript interface:

import { createPicker } from "ts-runtime-picker";

const picker = createPicker<User>();

const inputObject = {
    firstName: "John",
    lastName: "Doe",
    email: "john.doe@example.com",
    password: "secret",
    extraField: "notNeeded",
};

const result = picker(inputObject);
console.log(result); // { firstName: "John", lastName: "Doe", email: "john.doe@example.com", password: "secret" }

3. Using createFullPicker

For cases where you are certain that all properties defined in the type will be present in the object (for example, when extracting a child type from a parent type), you can use createFullPicker. It behaves exactly like createPicker, but returns a full type instead of a Partial type:

import { createFullPicker } from "ts-runtime-picker";

interface User {
    firstName: string;
    lastName: string;
    email: string;
    password: string;
}

const fullPicker = createFullPicker (); 

const completeUser = {
    firstName: "John",
    lastName: "Doe",
    email: "john.doe@example.com",
    password: "secret",
    extraData: "will be removed"
};

const result = fullPicker(completeUser); // Type is User, not Partial<User>

4. How It Works

The plugin dynamically transforms the createPicker<User>() and createFullPicker<User>() calls into runtime-safe implementations that pick only the keys defined in User. This transformation works with both Vite (via the plugin) and Webpack (via the loader). The main difference between the two functions is in their type signatures:

  • createPicker<T>() returns Partial<T>, which is safer when some properties might be missing
  • createFullPicker<T>() returns T, which is appropriate when you know all properties will be present, useful in case where you want to pick a child type from a parent type.

Warning

Currently, ts-runtime-picker does not support dynamic generic types. For example, the following code will not work as expected:

function someFunction<T>(data): void {
   const picker = createPicker<T>();
   const filteredData = picker(data);
   //...
}

someFunction<User>(request.data);

The type parameter T must be an explicitly declared type when using createPicker<T>(). We are actively working on supporting dynamic generic types in future releases. And we are looking for contributors to help us implement this feature. If you're interested, please check out our contributing guidelines.


🎯 Purpose and Benefits

The goal of ts-runtime-picker is to bridge the gap between TypeScript's compile-time type safety and runtime JavaScript functionality. By transforming your code at build time, this package enables developers to:

  • 🚫 Avoid repetitive manual key picking from objects.
  • ⚑ Ensure runtime behavior aligns with TypeScript-defined interfaces.
  • πŸŽ‰ Simplify code while maintaining type safety.
  • πŸ›  Works seamlessly with modern bundlers, including Vite (via a plugin) and Webpack (via a loader).

Contributing

We welcome contributions! If you'd like to improve ts-runtime-picker, feel free to open an issue or submit a pull request.

Author

License

MIT

🌟 Acknowledgements

Special thanks to the open-source community and early adopters of ts-runtime-picker for their feedback, which helped expand support to Webpack alongside Vite.

GitAds Sponsored

Sponsored by GitAds

About

A package to dynamically create pickers based on TypeScript interfaces.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •