NTypewriter
File/code generator using Scriban text templates populated with C# code metadata from Roslyn API.
Install / Use
/learn @NeVeSpl/NTypewriterREADME
NTypewriter

<ins>For those who do not know Typewriter</ins>:
NTypewriter is files generator from text templates populated with meta-data about your C# code. It is like a specialized and more convenient T4 design-time template.
With NTypewriter you can:
- auto-generate documentation for your C# code
- create a typed TypeScript API client for your ASP.net web API
NTypewriter comes in many flavours, that can be used according to your needs:
- NTypewriter editor for Visual Studio - extension for Visual Studio that adds support for editing *.nt templates, with syntax highlighting, code completion, live preview, design time rendering, available on vs marketplace
- NTypewriter.SourceGenerator - nuget, Roslyn source generator that renders *.nt templates during compilation, since it is a compiler extension, it can be used with any IDE or CI/pipeline that supports source generators
- NTypewriter.Online - blazor client side, online demo of NTypewriter capabilities
- NTypewriter - nuget, library that enables you to create run time solution which will be able to render *.nt templates, for example: your own CLI
- NTypewriter.CodeModel.Roslyn - nuget, library that exposes C# code model from an instance of
Microsoft.CodeAnalysis.Compilation, useful if you would like to use a different template engine
more about NTypewriter architecture and all extension points that can be used, you will find here
<ins>For those who know Typewriter</ins>:
NTypewriter is a younger and more immature brother of beloved Typewriter. They share the same ideas but with a completely different implementation. NTypwriter uses Scriban as a template engine, thus template files are completely not interchangeable. While code model API is about 95% compatible between them, there are some differences. NTypewriter code model is 100% pure, without any amenities that help generate TS files. All things that help generate TypeScript from ASP.NET are located in built-in functions: Action, Type.
Oh, did I forget to mention that NTypewriter also solves most of the awaited issues of the Typewriter that were promised for 2.0 version:
- support for attribute properties/values, statics, indexers, default parameters, nullable, records, constructors
- output multiple types to a single file
- include types in CodeModel from referenced assemblies/nugets
- save generated file only when file content has changed
- sharable custom functions between templates
- full control over whitespaces
- compile-time rendering, without any IDE needed
- built-in support for getting all types used in type declaration (Type.AllReferencedTypes)
- you can debug custom functions
Index
-
Getting started
-
Documentation
- Template language
- Code model
- Built-in functions
- Name vs BareName vs FullName
- Custom Functions
- Configuration
- Visual Studio Configuration
Typewriter vs NTypewriter
| Typewriter | NTypewriter ----------|------------ | ------------- Template file extension | *.tst | .nt Syntax | typewriter syntax | scriban scripting language Lambda filters | present | yes Can be used from CLI | no | yes Can be used in pipeline | no | yes Full control over whitespaces | nope | yup Mapping | one input always produces one output file | you can generate as many files as you want Live preview | no | yes Code model | Unit of work | file | there is no concept of a file in NTypewriter, you work on compiled symbols Access modifiers | code model contains only public types | code model contains all types Partial classes | treated as separate units | all parts of the class are treated as a whole unit Automation | Auto-render template on save| yes (opt-out is possible)| yes (opt-in is possible) Auto-render when C# file changes| yes (opt-out is possible)| no Auto-render on build | no | yes (opt-in is possible) Custom functions | Placement|inside template file (.tst)| in separate file (.nt.cs)| Can be shared|separate for every template| shared between templates inside a project | Can be debug|no| yes | Can be unit tested | no | yes VS Integration | Supported versions of Visual Studio | 2015, 2017, 2019 | 2019 (min ver 16.11.x), 2022 Add generated files to VS project | yes (opt-out is possible) | yes (opt-out is possible) Sync deleted or renamed C# types with generated files | there is a part of the code that should do that but it does not work anymore | yes (only when the above option is enabled)
Typewriter template:
module App { $Classes(*Model)[
export class $Name { $Properties[
public $name: $Type;]
}]
}
equivalent NTypewriter template will be: (open in NTypewriter.Online)
{{- for class in data.Classes | Symbols.WhereNameEndsWith "Model"
capture output -}}
module App {
export class {{ class.Name }} {
{{- for property in class.Properties | Symbols.ThatArePublic }}
public {{ property.Name | String.ToCamelCase }}: {{ property.Type | Type.ToTypeScriptType }};
{{- end }}
}
}
{{- end
filePath = class.BareName | String.Append ".ts"
Save output filePath
end }}
yes, it is more verbose, but maintaining it over time will be much easier. Both templates generate exactly the same output:
module App {
export class CustomerModel {
public id: number;
public name: string;
public orders: OrderModel[];
}
}
Examples
All Typewriter examples are available as .nt templates on github and also on NTypewriter.Online website.
Note nt. templates produce exactly the same output as .tst templates, even bad output formatting was preserved, to make them easier to compare.
example | NTypewriter | Typewriter | On
Related Skills
node-connect
344.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
96.8kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
344.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
344.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
