dotnet-to-typescript 0.4.0

dotnet tool install --global dotnet-to-typescript --version 0.4.0                
This package contains a .NET tool you can call from the shell/command line.
dotnet new tool-manifest # if you are setting up this repo
dotnet tool install --local dotnet-to-typescript --version 0.4.0                
This package contains a .NET tool you can call from the shell/command line.
#tool dotnet:?package=dotnet-to-typescript&version=0.4.0                
nuke :add-package dotnet-to-typescript --version 0.4.0                

dotnet-to-typescript

A .NET tool that converts C# classes to TypeScript definitions, enabling type-safe JavaScript scripting in .NET applications.

Build and Test NuGet

Installation

Install as a global .NET tool:

dotnet tool install dotnet-to-typescript --global

Features

  • Converts C# classes to TypeScript definitions
  • Supports enums, interfaces, and complex types
  • Generates TypeScript instance files for scripting
  • Handles async methods (Task/Task<T>)
  • Supports collections (List<T>, Dictionary<K,V>)
  • Preserves nullable types
  • Automatically tracks and generates definitions for referenced System types
  • Handles inheritance relationships between types

Usage

1. Add Required Attributes

Define two attributes in your assembly:

[AttributeUsage(AttributeTargets.Class | AttributeTargets.Enum | AttributeTargets.Struct)]
public class JavascriptTypeAttribute : Attribute
{
    public JavascriptTypeAttribute(bool isSkipped = false)
    {
        SkipDefinition = isSkipped;
    }

    public bool SkipDefinition { get; }
}

[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
public class JavascriptObjectAttribute : Attribute
{
    public JavascriptObjectAttribute(string name)
    {
        Name = name;
    }

    public string Name { get; }
}

SkipDefinition will add properties defined in that class but not the class itself. Name will create a new instance of that class.

2. Decorate Your Classes

Mark classes that should be available to JavaScript:

[JavascriptType] // Adds a definition for the class
[JavascriptObject("car")] // Adds an instance of the class to the javascript context
public class Car : IVehicle
{
    public string Make { get; set; }
    public int Year { get; set; }
 
    public bool AddUser(User user)
    {
        return true;
    }
}

3. Build Your Assembly

4. Generate TypeScript Files

Run the tool against your assembly:

dotnet-to-typescript generate path/to/your/assembly.dll

Note that you can also specify multiple assemblies to generate definitions for:

dotnet-to-typescript generate path/to/your/assembly1.dll path/to/your/assembly2.dll

The attributes need to be defined in one of the assemblies.

Optional parameters: Optional parameters:

  • -o, --output-directory: Specify output directory for generated files
  • -p, --preserve-case: Preserve original casing in property and method names
  • -n, --output-name: Specify the output filename (without extension)

5. Review the sample output

2 files will be created in the same directory as the assembly (or specified output directory):

  • assembly.d.ts - TypeScript definitions, same name as the assembly
  • assembly.ts - TypeScript instances, same name as the assembly
// assembly.d.ts
declare class Car {
    Make: string;
    Year: number;
    AddUser(user: User): boolean;
}

// assembly.ts
/// <reference path="assembly.d.ts" />
let car = new Car();

// Insert your script below
// -------------------------

Use Cases

This tool is particularly useful when:

  • Using JavaScript engines like Jint in your .NET application
  • Need type-safe JavaScript/TypeScript scripting
  • Want to maintain type consistency between C# and JavaScript
  • Developing scripts with full IntelliSense support in VS Code

Supported Types

  • Primitive types (string, number, boolean)
  • DateTime → Date
  • Arrays and Lists → Array
  • Dictionaries → Record/indexed type
  • Enums
  • Complex types
  • Nullable types
  • Task<T> → Promise<T>
  • Interfaces (mapped to concrete implementations)
  • System Types
    • Exception → TypeScript class with message, stackTrace, and innerException
    • ArgumentException → TypeScript class extending Exception with paramName
    • Other System namespace types automatically tracked and included

Performance

Using the extension method to get object names is very efficient.

Method Mean Error StdDev
GetAttributeValueExtension 1.035 us 0.0681 us 0.1966 us

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

Version Downloads Last updated
0.4.0 30 11/20/2024
0.3.0 46 11/19/2024
0.2.0 51 11/18/2024
0.1.3 59 11/16/2024
0.1.2 60 11/16/2024
0.1.1 58 11/16/2024