node-typescript
The TypeScript API exposed to nodejs. Use to compile typescript code in memory
Last updated 13 years ago by diullei .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install node-typescript 
SYNC missed versions from official npm registry.

node-typescript

The TypeScript API exposed to nodejs. Use to compile typescript code in memory.

Usage

install node-typescript with npm:

npm i node-typescript

Create a file with this sample code:

var tsc = require('./node_modules/node-typescript/lib/compiler');
var compiler = tsc.compiler;

tsc.initDefault();

var code = '\
class Greeter {\
    greeting: string;\
    constructor(message: string) {\
        this.greeting = message;\
    }\
    greet() {\
        return "Hello, " + this.greeting;\
    }\
}\
var greeter = new Greeter("world");\
var button = document.createElement("button");\
button.innerText = "Say Hello";\
button.onclick = function() {\
    alert(greeter.greet());\
};\
document.body.appendChild(button);\
';

tsc.resolve(__dirname + '/xxx.ts', code, compiler);

compiler.typeCheck();

var stdout = new tsc.EmitterIOHost();
compiler.emit(stdout);

Get the javascript output in stdout.fileCollection. To this example the javascript output is:

{ '.../xxx.js':
   { lines:
      [ 'var Greeter = (function () {',
        '    function Greeter(message) {',
        '        this.greeting = message;',
        '    }',
        '    Greeter.prototype.greet = function () {',
        '        return "Hello, " + this.greeting;',
        '    };',
        '    return Greeter;',
        '})();',
        'var greeter = new Greeter("world");',
        'var button = document.createElement("button");',
        'button.innerText = "Say Hello";',
        'button.onclick = function () {',
        '    alert(greeter.greet());',
        '};',
        'document.body.appendChild(button);' ],
     currentLine: '' } }

Current Tags

  • 0.1.3                                ...           latest (13 years ago)

4 Versions

  • 0.1.3                                ...           13 years ago
  • 0.1.2                                ...           13 years ago
  • 0.1.1                                ...           13 years ago
  • 0.1.0                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |