ts-emitter icon indicating copy to clipboard operation
ts-emitter copied to clipboard

Emitting typescript AST back to typescript

ts-emitter

GitHub license npm Travis codecov Commitizen friendly Standard Version renovate badge

Emitting typescript as back to typescript.

DEPRECATED

ts-emitter is currently not maintained and should be seen as deprecated

Features

  • Keep original source as much as possible and only update whats changed.

Usage

Installation

Install as npm package:

$ npm install ts-emitter

Tests

The typescript compiler test suite is used to test the code generator. To create and run the test harness execute

$ npm run update-harness[coverage-image]: https://coveralls.io/repos/github/KnisterPeter/ts-emitter/badge.svg?branch=master
55
[coverage-link]: https://coveralls.io/github/KnisterPeter/ts-emitter?branch=master
56
​
57
​
58
​
59

$ npm run harness

API

  import { fromPath, toSource } from 'ts-emitter';

  const ast = fromPath('path/to/source-file.ts'));
  // Do something with the AST
  const source = toSource(ast);