Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 1.35 KB

nodejs.md

File metadata and controls

36 lines (23 loc) · 1.35 KB

TypeScript with NodeJS

TypeScript has had first class support for NodeJS since inception. Here's how to get setup with a NodeJS project in TypeScript:

  1. Add node.d.ts (npm install @types/node --save-dev) to your compilation context.
  2. Compile with --module set to "commonjs".
  3. Add node to the global resolution by simply adding it to types in your tsconfig.

So your tsconfig will look like:

{
    "compilerOptions": {
        "module": "commonjs",
        "types": [
            "node"
        ]
    }
}

That's it! Now you can use all the built in node modules (e.g. import fs = require('fs')) with all the safety and developer ergonomics of TypeScript!

Creating TypeScript node modules

You can even use other node modules written in TypeScript. As a module author, one real thing you should do:

  • you might want to have a typings field (e.g. src/index) in your package.json similar to the main field to point to the default TypeScript definition export. For an example look at package.json for csx.

Example package: npm install csx for csx, usage: import csx = require('csx').

Bonus points

Such NPM modules work just fine with browserify (using tsify) or webpack (using ts-loader).