Scriban.Signed
7.0.3
Prefix Reserved
dotnet add package Scriban.Signed --version 7.0.3
NuGet\Install-Package Scriban.Signed -Version 7.0.3
<PackageReference Include="Scriban.Signed" Version="7.0.3" />
<PackageVersion Include="Scriban.Signed" Version="7.0.3" />
<PackageReference Include="Scriban.Signed" />
paket add Scriban.Signed --version 7.0.3
#r "nuget: Scriban.Signed, 7.0.3"
#:package Scriban.Signed@7.0.3
#addin nuget:?package=Scriban.Signed&version=7.0.3
#tool nuget:?package=Scriban.Signed&version=7.0.3
scriban

<img align="right" width="160px" height="160px" src="img/scriban.png">
Scriban is a fast, powerful, safe and lightweight scripting language and engine for .NET, which was primarily developed for text templating with a compatibility mode for parsing liquid templates.
Today, not only Scriban can be used in text templating scenarios, but also can be integrated as a general scripting engine: For example, Scriban is at the core of the scripting engine for kalk, a command line calculator application for developers.
// Parse a scriban template
var template = Template.Parse("Hello {{name}}!");
var result = template.Render(new { Name = "World" }); // => "Hello World!"
Parse a Liquid template using the Liquid language:
// Parse a liquid template
var template = Template.ParseLiquid("Hello {{name}}!");
var result = template.Render(new { Name = "World" }); // => "Hello World!"
The language is very versatile, easy to read and use, similar to liquid templates:
var template = Template.Parse(@"
<ul id='products'>
{{ for product in products }}
<li>
<h2>{{ product.name }}</h2>
Price: {{ product.price }}
{{ product.description | string.truncate 15 }}
</li>
{{ end }}
</ul>
");
var result = template.Render(new { Products = this.ProductList });
Scriban can also be used in pure scripting context without templating ({{ and }}) and can help you to create your own small DSL.
By default, Properties and methods of .NET objects are automatically exposed with lowercase and _ names. It means that a property like MyMethodIsNice will be exposed as my_method_is_nice. This is the default convention, originally to match the behavior of liquid templates.
If you want to change this behavior, you need to use a MemberRenamer delegate
Highlights
- Fully visitable AST with
ScriptVisitor, parent links onScriptNode, and round-trippable formatting withTemplate.ToText. - Flexible language features including hexadecimal/binary numbers, large integers, parametric and inline functions, optional member access (
?.), and conditional expressions. - Multiple parsing modes through
ScriptLangandScriptMode, including Scriban, Liquid, and Scientific parsing. - Fine-grained runtime control through
TemplateContextoptions such as relaxed member, function, target, and indexer access. - Runtime evaluation helpers such as
object.evalandobject.eval_template. - Async rendering support with
Template.RenderAsync. - Native AOT and trimming-friendly APIs on .NET 8+ when using the AOT-safe surface documented in the runtime guides.
Features
- An extensible sandbox execution model: You have the full control about which Scripting objects (and so properties and methods) are accessible from Scriban templates.
- Very efficient, fast parser and a lightweight runtime. CPU and Garbage Collector friendly.
- Powered by a Lexer/Parser providing a full Abstract Syntax Tree, fast, versatile and robust, more efficient than regex based parsers.
- Precise source code location (path, column and line) for error reporting
- Write an AST to a script textual representation, with
Template.ToText, allowing to manipulate scripts in memory and re-save them to the disk, useful for roundtrip script update scenarios
- Compatible with
liquidby using theTemplate.ParseLiquidmethod- While the
liquidlanguage is less powerful than scriban, this mode allows to migrate fromliquidtoscribanlanguage easily - With the AST to text mode, you can convert a
liquidscript to a scriban script usingTemplate.ToTexton a template parsed withTemplate.ParseLiquid - As the liquid language is not strictly defined and there are in fact various versions of liquid syntax, there are restrictions while using liquid templates with scriban, see the document liquid support in scriban for more details.
- While the
- Extensible runtime providing many extensibility points
- Support for
async/awaitevaluation of scripts (e.gTemplate.RenderAsync) - Precise control of whitespace text output
- Full featured language including
if/else/for/while, expressions (x = 1 + 2), conditions... etc. - Function calls and pipes (
myvar | string.capitalize)- Custom functions directly into the language via
funcstatement and allow function pointers/delegates via thealias @ directive - Bind .NET custom functions from the runtime API with many options for interfacing with .NET objects.
- Custom functions directly into the language via
- Complex objects (javascript/json like objects
x = {mymember: 1}) and arrays (e.gx = [1,2,3,4]) - Allow to pass a block of statements to a function, typically used by the
wrapstatement - Several built-in functions:
array,date,html,math,object,regex,string,timespan - Multi-line statements without having to embrace each line by
{{...}} - Safe parser and safe runtime, allowing you to control what objects and functions are exposed
- AOT and trimming compatible on .NET 8+.
ScriptObject-based APIs produce zero linker warnings for Native AOT publishing
Syntax Coloring
You can install the Scriban Extension for Visual Studio Code to get syntax coloring for scriban scripts (without HTML) and scriban html files.
Documentation
The full documentation is available at https://scriban.github.io.
Installation
Scriban is available as a NuGet package:
dotnet add package Scriban
The package targets netstandard2.0 and net8.0, so it works with .NET 6+, .NET Framework 4.7.2+, and other compatible runtimes.
Also the Scriban.Signed NuGet package provides signed assemblies.
Source Embedding
The package includes Scriban source files so that you can internalize Scriban into your project instead of consuming it only as a binary dependency. This is useful in environments where NuGet references are not convenient, such as Roslyn source generators.
Currently, Scriban source files are not marked as read-only in this mode. Do not modify them unless you intend to affect other projects on the same machine that use the embedded sources. Use this feature at your own risk.
In order to activate this feature you need to:
- Set the property
PackageScribanIncludeSourcetotruein your project:<PropertyGroup> <PackageScribanIncludeSource>true</PackageScribanIncludeSource> </PropertyGroup> - Add the
IncludeAssets="Build"to the NuGet PackageReference for Scriban:<ItemGroup> <PackageReference Include="Scriban" Version="x.y.z" IncludeAssets="Build" /> </ItemGroup> - Compile the embedded sources with C# 9 or later and nullable annotations enabled:
<PropertyGroup> <LangVersion>9.0</LangVersion> <Nullable>enable</Nullable> </PropertyGroup>
If you are targeting netstandard2.0 or .NET Framework 4.7.2+, you will also need the supporting packages Scriban compiles against. They can already come from another dependency in your project:
<ItemGroup>
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.6.3" />
<PackageReference Include="PolySharp" Version="1.15.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
Scriban.targets already defines SCRIBAN_NO_SYSTEM_TEXT_JSON and SCRIBAN_SOURCE_INCLUDE when PackageScribanIncludeSource is true, so you do not need to add these constants manually.
In this mode, all Scriban types are marked as internal.
System.Text.Json-based features are intentionally disabled in source-embedding mode. This includes helpers such as object.from_json, object.to_json, and direct JsonElement import support.
License
This software is released under the BSD-Clause 2 license.
Related projects
- dotliquid: .NET port of the liquid templating engine
- Fluid .NET liquid templating engine
- Nustache: Logic-less templates for .NET
- Handlebars.Net: .NET port of handlebars.js
- Textrude: UI and CLI tools to turn CSV/JSON/YAML models into code using Scriban templates
- NTypewriter: VS extension to turn C# code into documentation/TypeScript/anything using Scriban templates
Online Demo
- Main site and playground: https://scriban.github.io
Sponsors
Supports this project with a monthly donation and help me continue improving it. [Become a sponsor]
<img src="https://github.com/lilith.png?size=200" width="64px;" style="border-radius: 50%" alt="lilith"/> Lilith River, author of Imageflow Server, an easy on-demand image editing, optimization, and delivery server
Credits
Adapted logo Puzzle by Andrew Doane from the Noun Project
Author
Alexandre Mutel aka xoofx.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Microsoft.CSharp (>= 4.7.0)
- System.Text.Json (>= 10.0.5)
- System.Threading.Tasks.Extensions (>= 4.6.3)
-
net8.0
- No dependencies.
NuGet packages (9)
Showing the top 5 NuGet packages that depend on Scriban.Signed:
| Package | Downloads |
|---|---|
|
WireMock.Net.Minimal
Minimal version from the lightweight Http Mocking Server for .NET |
|
|
NTypewriter
File/code generator from Scriban text templates populated with Roslyn C# code model |
|
|
Axuno.TextTemplating
Text templating is used to dynamically render contents based on a template and a model. * It is based on the Scriban library, so it supports conditional logics, loops and much more. * Template content can be localized. * You can define layout templates to be used as the layout while rendering other templates. * You can pass arbitrary objects to the template context (beside the model) for advanced scenarios. The library is a modified version of the lightweight TextTemplating.Scriban part of Volo.Abp.TextTemplating 7.0 (i.e., exluding the more heavy TextTemplating.Razor). |
|
|
NTypewriter.Runtime
App-independent engine used to run NTypewriter from UI |
|
|
essentialMix.Template
Common extensions methods, helper classes, components, nano systems, common patterns, and caching |
GitHub repositories (8)
Showing the top 8 popular GitHub repositories that depend on Scriban.Signed:
| Repository | Stars |
|---|---|
|
chocolatey/choco
Chocolatey - the package manager for Windows
|
|
|
npgsql/npgsql
Npgsql is the .NET data provider for PostgreSQL.
|
|
|
ErsatzTV/ErsatzTV
Open-source platform that transforms your personal media library into live, custom TV channels.
|
|
|
wiremock/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on WireMock Java, but extended with more functionality.Full documentation can be found at https://wiremock.org/dotnet/.
|
|
|
microsoft/Oryx
Build your repo automatically.
|
|
|
LanguageDev/Yoakke
A collection of libraries for implementing compilers in .NET.
|
|
|
NeVeSpl/NTypewriter
File/code generator using Scriban text templates populated with C# code metadata from Roslyn API.
|
|
|
mrpmorris/Morris.Moxy
Moxy - Mixins code generator for C#
|
| Version | Downloads | Last Updated |
|---|---|---|
| 7.0.3 | 5 | 3/23/2026 |
| 7.0.2 | 3 | 3/23/2026 |
| 7.0.1 | 5 | 3/23/2026 |
| 7.0.0 | 214 | 3/22/2026 |
| 6.6.0 | 175 | 3/19/2026 |
| 6.5.8 | 857 | 3/16/2026 |
| 6.5.7 | 1,650 | 3/11/2026 |
| 6.5.6 | 369 | 3/11/2026 |
| 6.5.5 | 1,117 | 3/5/2026 |
| 6.5.4 | 380 | 3/4/2026 |
| 6.5.3 | 4,158 | 2/18/2026 |
| 6.5.2 | 55,741 | 11/25/2025 |
| 6.5.1 | 7,134 | 11/17/2025 |
| 6.5.0 | 9,408 | 10/27/2025 |
| 6.4.0 | 13,066 | 9/21/2025 |
| 6.3.0 | 4,576 | 9/11/2025 |
| 6.2.1 | 42,627 | 4/18/2025 |
| 6.2.0 | 3,743 | 4/7/2025 |
| 6.1.0 | 140,505 | 4/1/2025 |
| 6.0.0 | 12,890 | 3/6/2025 |