Skip to content

Latest commit

 

History

History
78 lines (57 loc) · 2.49 KB

README.md

File metadata and controls

78 lines (57 loc) · 2.49 KB

ts-codegenerator

Write TypeScript code with one click!

npm version

Introduction

ts-codegenerator is a tool designed to simplify and accelerate TypeScript development. Since we developers often write similar patterns and structures, this package aims to automate these repetitive tasks, so we can focus on unique stuff. It is heavily used under VisualTS monorepo to generate TypeScript/React (in the future) code.

Key Concept: Blocks

At the core of ts-codegenerator is the concept of 'Blocks'. Blocks are reusable elements of TypeScript code - similar to how LEGO blocks can be combined to create complex structures. By assembling these Blocks, you can quickly generate complex TypeScript functions and modules.

Why Use ts-codegenerator?

  1. Efficiency: Automate repetitive coding patterns to save time and reduce errors.
  2. Cross-Platform: Generate TypeScript code anytime, anywhere, on any device.
  3. Flexibility: Easily adapt and modify generated code to suit specific needs. It can scan your codebase and generate code that fits your existing patterns.
  4. Visual Programming: Using visual interfaces you connect the dots to better understand the code you are writing.

Getting Started

  1. Install the package:

    bun add @ozhanefe/ts-codegenerator
    
  2. Import the necessary functions:

    import {
      createFunctionCallBlock,
      generateCode,
    } from "@ozhanefe/ts-codegenerator";
  3. Create code blocks:

    const block1 = createFunctionCallBlock(
      {
        name: "fetchUser",
        returnType: "Promise<User>",
        parameters: [{ name: "id", type: "number" }],
      },
      state
    );
    
    const block2 = createFunctionCallBlock(
      {
        name: "processUser",
        returnType: "void",
        parameters: [{ name: "user", type: "User" }],
      },
      state
    );
  4. Generate TypeScript code:

    const code = generateCode([block1, block2]);
    console.log(code);
  5. Output:

    async function generatedFunction() {
      const user = await fetchUser(id);
      processUser(user);
    }

Contributing

We welcome contributions to improve ts-codegenerator. If you've identified a bug, have a feature request, or want to contribute code, please open an issue or pull request on our GitHub repository.