Skip to content

Single-class-per-file C# to TypeScript generator

License

Notifications You must be signed in to change notification settings

grumpy-kittens/TypeGen

 
 

Repository files navigation

TypeGen

Single-class-per-file C# to TypeScript generator

Build status

Project's website: http://jburzynski.net/TypeGen

Complete documentation: http://typegen.readthedocs.io

How to get

Quick start

Add TypeGen NuGet package to your project.

Mark your C# classes/enums as exportable to TypeScript:

// with attributes

[ExportTsClass]
public class ProductDto
{
    public decimal Price { get; set; }
    public string[] Tags { get; set; }
}

// or with a generation spec

public class MyGenerationSpec : GenerationSpec
{
    public MyGenerationSpec()
    {
        AddClass<ProductDto>();
    }
}

After building your project, type TypeGen generate into the Package Manager Console (you might need to restart Visual Studio), or dotnet typegen generate in the system console if you're using TypeGen .NET CLI tool. Note: if you're using generation specs, you should also add your spec(s) in tgconfig.json under the generationSpecs parameter (more details in the docs).

This will generate a single TypeScript file (named product-dto.ts) in your project directory. The file will look like this:

export class ProductDto {
    price: number;
    tags: string[];
}

Features

Some of TypeGen's features include:

  • generating TypeScript classes, interfaces and enums - single class per file
  • support for collection (or nested collection) types
  • generic classes/types generation
  • support for inheritance
  • customizable convertion between C#/TypeScript names (naming conventions)

For complete list of features with examples, please refer to the project's documentation: http://typegen.readthedocs.io

About

Single-class-per-file C# to TypeScript generator

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 93.1%
  • TypeScript 3.2%
  • HTML 2.5%
  • PowerShell 0.8%
  • Smarty 0.3%
  • CSS 0.1%