Scriban
A fast, powerful, safe and lightweight scripting language and engine for .NET
Install / Use
/learn @scriban/ScribanREADME
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.
[!NOTE] By default, Properties and methods of .NET objects are automatically exposed with lowercase and
_names. It means that a property likeMyMethodIsNicewill be exposed asmy_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 aMemberRenamerdelegate
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.
[!WARNING] 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>
[!NOTE]
Scriban.targetsalready definesSCRIBAN_NO_SYSTEM_TEXT_JSONandSCRIBAN_SOURCE_INCLUDEwhenPackageScribanIncludeSourceistrue, 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 asobject.from_json,object.to_json, and directJsonElementimport 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.
Related Skills
node-connect
332.0kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
81.7kCreate 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
332.0kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
81.7kCommit, push, and open a PR
