npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

Iโ€™ve always been into building performant and accessible sites, but lately Iโ€™ve been taking it extremely seriously. So much so that Iโ€™ve been building a tool to help me optimize and monitor the sites that I build to make sure that Iโ€™m making an attempt to offer the best experience to those who visit them. If youโ€™re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, ๐Ÿ‘‹, Iโ€™m Ryan Hefnerย  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If youโ€™re interested in other things Iโ€™m working on, follow me on Twitter or check out the open source projects Iโ€™ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soonโ€“ish.

Open Software & Tools

This site wouldnโ€™t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you ๐Ÿ™

ยฉ 2024 โ€“ย Pkg Stats / Ryan Hefner

@putout/plugin-typescript

v7.3.0

Published

๐ŸŠPutout plugin for transforming TypeScript code

Downloads

19,869

Readme

@putout/plugin-typescript NPM version

TypeScript is JavaScript with syntax for types.

(c) typescriptcriptlang.org

๐ŸŠPutout plugin adds ability to transform TypeScript code. Enabled by default for ts and tsx files.

Install

npm i putout @putout/plugin-typescript -D
{
    "rules": {
        "typescript/apply-as-type-assertion": "on",
        "typescript/apply-utility-types": "on",
        "typescript/apply-type-guards": "on",
        "typescript/convert-generic-to-shorthand": "on",
        "typescript/convert-commonjs-to-esm": "off",
        "typescript/convert-esm-to-commonjs": "off",
        "typescript/remove-duplicates-from-union": "on",
        "typescript/remove-duplicates-interface-keys": "on",
        "typescript/remove-duplicates-exports": "on",
        "typescript/remove-useless-types-from-constants": "on",
        "typescript/remove-unused-types": "on",
        "typescript/remove-useless-types": "on",
        "typescript/remove-useless-parens": "on",
        "typescript/remove-useless-promise": "on",
        "typescript/remove-useless-mapped-types": "on",
        "typescript/cts-file": "off",
        "typescript/mts-file": "off",
        "typescript/rename-file-cts-to-ts": "off",
        "typescript/rename-file-mts-to-ts": "off",
        "typescript/find-file": ["off", {
            "ignore": []
        }]
    }
}

apply-as-type-assertion

According to best practise.

โŒ Example of incorrect code

const boundaryElement = <HTMLElement>e.target;

โœ… Example of correct code

const boundaryElement1 = e.target as HTMLElement;

apply-utility-types

โŒ Example of incorrect code

type SuperType1 = {
    [Key in keyof Type]?: Type[Key];
};

โœ… Example of correct code

type SuperType1 = Partial<Type>;

apply-type-guards

It just so happens that TypeScript has something called a type guard. A type guard is some expression that performs a runtime check that guarantees the type in some scope.

(c) typescript.org

Check out in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

const isNumber = (a) => typeof a === 'number';

โœ… Example of correct code

const isNumber = (a): a is number => typeof a === 'number';

convert-generic-to-shorthand

There is no difference at all. Type[] is the shorthand syntax for an array of Type. Array<Type> is the generic syntax. They are completely equivalent.

(c) https://stackoverflow.com/a/36843084/4536327

Convert generic to shorthand.

โŒ Example of incorrect code

interface A {
    x: Array<X>;
    y: Array<X | Y>;
}

โœ… Example of correct code

interface A {
    x: X[];
    y: X[] | Y[];
}

Comparison

Linter | Rule | Fix --------|-------|------------| ๐ŸŠ Putout | typescript/convert-generic-to-shorthand | โœ… โฃ ESLint | @typescript-eslint/array-type | โœ…

convert-commonjs-to-esm

Checkout in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

import foo = require('foo');
export = 5;

โœ… Example of correct code

import foo from 'foo';

export default 5;

convert-commonjs-to-esm

Checkout in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

import foo from 'foo';

export default 5;

โœ… Example of correct code

import foo = require('foo');
export = 5;

remove-duplicates-from-union

โŒ Example of incorrect code

type x = boolean[]
    | A
    | string
    | A
    | string[]
    | boolean[];

โœ… Example of correct code

type x = boolean[]
    | A
    | string
    | string[];

remove-duplicates-exports

In JavaScript duplicate exports leads to SyntaxError, anyways TypeScript parses such code and reports Duplicates Identifier diagnostic.

It gives us ability to automate fixing of such code ๐Ÿ˜. Check it out in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

export {
    a,
    hello,
    a,
    world,
};

โœ… Example of correct code

export {
    hello,
    a,
    world,
};

โ˜๏ธ The rule fits good with putout/add-newlines-between-specifiers of eslint-plugin-putout.

remove-useless-types-from-constants

โŒ Example of incorrect code

const x: any = 5;

โœ… Example of correct code

const x = 5;

remove-unused-types

โŒ Example of incorrect code

type n = number;
type s = string;

const x: n = 5;

โœ… Example of correct code

type n = number;

const x: n = 5;

remove-useless-types

โŒ Example of incorrect code

type oldType = {
    a: number;
    b: string;
};
type newType = oldType;

const x: newType = {
    a: 5,
    b: 'hello',
};

โœ… Example of correct code

type oldType = {
    a: number;
    b: string;
};

const x: oldType = {
    a: 5,
    b: 'hello',
};

remove-useless-parens

Check it out in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

const m: X[] = [];
const z: (X | Y) = 5;
const f: X = 5;

โœ… Example of correct code

const x: X[] | Y[] = [];
const m: X[] = [];
const z: X | Y = 5;
const f: X = 5;

remove-useless-promise

Check it out in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

function doStuff(): Promise<string> {
    return 'hello';
}

โœ… Example of correct code

function doStuff(): string {
    return 'hello';
}

remove-useless-mapped-types

Remove useless mapped types.

โŒ Example of incorrect code

type SuperType = {
    [Key in keyof Type]: Type[Key];
};

โœ… Example of correct code

type SuperType = Type;

remove-useless-mapping-modifiers

Remove useless mapping modifiers.

โŒ Example of incorrect code

type SuperType = {
    [Key in keyof Type]+?: Type[Key];
};

โœ… Example of correct code

type SuperType = {
    [Key in keyof Type]?: Type[Key];
};

remove-duplicate-interface-keys

โŒ Example of incorrect code

interface Hello {
    'hello': any;
    'hello': string;
}

โœ… Example of correct code

interface Hello {
    'hello': string;
}

cts-file

Run convert-esm-to-commonjs for all *.cts files with help of redlint.

Check out in ๐ŸŠPutout Editor.

mts-file

Run convert-esm-to-commonjs for all *.mts files with help of redlint.

Check out in ๐ŸŠPutout Editor.

find-file

Checkout in ๐ŸŠPutout Editor.

โŒ Example of incorrect code

__putout_processor_filesystem(['/', [
    '/hello.ts',
    'const a: number = 5;',
]]);

โœ… Example of correct code

__putout_processor_filesystem(['/', [
    '/hello.ts',
    'const a = 5;',
]]);

rename-file-cts-to-ts

Rename *.cts files when type === "commonjs":

 /
 |-- package.json
 `-- lib/
-     `-- hello.cts
+     `-- hello.ts

Check out in ๐ŸŠPutout Editor.

rename-file-mts-to-ts

Rename *.mts files when type === "module":

 /
 |-- package.json
 `-- lib/
-     `-- hello.mts
+     `-- hello.ts

Check out in ๐ŸŠPutout Editor.

License

MIT