1.2.4 • Published 6 years ago

typewiz-node v1.2.4

Weekly downloads
58
License
MIT
Repository
github
Last release
6 years ago

typewiz-node

Automatically add types to node.js TypeScript code using typewiz-core

Build Status Coverage Status

Installation

yarn global add typewiz-node

or

npm install -g typewiz-node

Usage

typewiz-node <main.ts>

If you want to enable typewiz for your mocha test, simply add -r typewiz-node/dist/register to your mocha command-line, e.g.:

mocha -r typewiz-node/dist/register src/**/test.ts

This will run your unit tests, discover type information, and write it back to your source files.

Example

Given the following input file:

function greet(who) {
    return `Hello, ${who}`;
}

console.log(greet('Uri'));

Typewiz will run the program and then the code will be updated as following:

function greet(who: string) {
    return `Hello, ${who}`;
}

console.log(greet('Uri'));

Note the addition of the : string type for the who parameter in the first line.

License

MIT

1.2.4

6 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.1.0-1

7 years ago

1.1.0-0

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.0

7 years ago

1.0.0-beta.2

7 years ago

1.0.0-beta.1

7 years ago

1.0.0-beta.0

7 years ago

1.0.0-alpha.0

7 years ago

0.5.0

7 years ago

0.4.3

7 years ago

0.4.2

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago