1.2.5 • Published 5 years ago

ts-creator v1.2.5

Weekly downloads
9
License
MIT
Repository
-
Last release
5 years ago

ts-creator

A code generator to generate TypeScript code generator from TypeScript code

Build Status NPM version

Try It!

How to use it:

npm install ts-creator

1. generate from code

import creator from 'ts-creator'

const generatedFactoryCode = creator(`const foo = "your code here"`)

2. transform source file

import { transformSourceFile } from 'ts-creator'

declare const file: ts.SourceFile
const factoryFile = transformSourceFile(file)

3. transform node

import { transformNode } from 'ts-creator'

declare const node: ts.Expression
const factoryNode = transformNode(node)

How does it work?

If you want to write a TypeScript codegen.

You got TypeScript code:

function foo(bar: number): number {
  return bar + 1
}

ts-creator generate TypeScript factory from given code to:

ts.createFunctionDeclaration(
  undefined,
  undefined,
  undefined,
  ts.createIdentifier('foo'),
  undefined,
  [
    ts.createParameter(
      undefined,
      undefined,
      undefined,
      ts.createIdentifier('bar'),
      undefined,
      ts.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),
      undefined
    )
  ],
  ts.createKeywordTypeNode(ts.SyntaxKind.NumberKeyword),
  ts.createBlock(
    [
      ts.createReturn(
        ts.createBinary(
          ts.createIdentifier('bar'),
          ts.createToken(ts.SyntaxKind.PlusToken),
          ts.createNumericLiteral('1')
        )
      )
    ],
    true
  )
)

Result after run the generated factory code:

function foo(bar: number): number {
    return bar + 1;
}

TODO:

  • JSDoc
1.2.5-f4d886b1

5 years ago

1.2.5-add0acdf

5 years ago

1.2.5-3c37a4e4

5 years ago

1.2.5-c7538302

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.4-10a53083

5 years ago

1.2.3

5 years ago

1.2.2-56ba5445

5 years ago

1.2.2-f11a2fcd

5 years ago

1.2.2-9fa5bcf3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.1-b8ea51d5

5 years ago

1.2.0-30689c25

5 years ago

1.2.0-e4c967ca

5 years ago

1.2.0-9abe862a

5 years ago

1.2.0-f44096c2

5 years ago

1.2.0-8a3b6645

5 years ago

1.2.0-cd075c66

5 years ago

1.2.0-bb3529f6

5 years ago

1.2.0-397de79a

5 years ago

1.2.0-173bb449

5 years ago

1.2.0-236b2d3a

5 years ago

1.2.0-d45f071b

5 years ago

1.2.0-d68f208c

5 years ago

1.2.0-67926fd3

5 years ago

1.2.0-c9e6aafe

5 years ago

1.2.0-6d8a15bd

5 years ago

1.2.0-20ca5be3

5 years ago

1.2.0-402e3359

5 years ago

1.2.0

5 years ago

1.1.10-be9c1788

5 years ago

1.1.10-55a4fbb5

5 years ago

1.1.10-9b22d5ac

5 years ago

1.1.10-f02673ef

5 years ago

1.1.10-c41a68d5

5 years ago

1.1.10-69ce820f

5 years ago

1.1.10-873cc816

5 years ago

1.1.10-10f5e592

5 years ago

1.1.10-874750a7

5 years ago

1.1.10

5 years ago

1.1.8

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.12

5 years ago

1.0.10

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago