Socket
Socket
Sign inDemoInstall

node-typescript

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-typescript

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


Version published
Weekly downloads
581
decreased by-21.8%
Maintainers
1
Weekly downloads
 
Created
Source

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: '' } }

Keywords

FAQs

Package last updated on 17 Mar 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc