Expressif 2.5.2

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Expressif --version 2.5.2
                    
NuGet\Install-Package Expressif -Version 2.5.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Expressif" Version="2.5.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Expressif" Version="2.5.2" />
                    
Directory.Packages.props
<PackageReference Include="Expressif" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Expressif --version 2.5.2
                    
#r "nuget: Expressif, 2.5.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Expressif@2.5.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Expressif&version=2.5.2
                    
Install as a Cake Addin
#tool nuget:?package=Expressif&version=2.5.2
                    
Install as a Cake Tool

Expressif

Expressif

About

Social media: website twitter badge

Releases: nuget GitHub Release Date conformance manifest badge licence badge

Dev. activity: GitHub last commit Still maintained GitHub commit activity

Continuous integration builds: CI CodeFactor codecov FOSSA Status

Status: stars badge Bugs badge Features badge Top language

Expressif is a language for defining data transformations, validations, computations, and aggregations as expressions. It was created for nbi.io and has grown into a portable language and function library for working with scalar and structured data.

Expressions are designed to be:

  • Readable: values flow from left to right through explicit transformations.
  • Predictable: operations favor safe results, such as #null, over avoidable exceptions.
  • Composable: small expressions combine into pipelines for filtering, mapping, and aggregation.
  • Portable: the language is designed to retain its meaning across runtime ecosystems.

Read the documentation · Learn the language · Browse the reference · View releases

The language

An Expressif expression receives a value, applies a transformation, and produces a result. The pipe operator (|) passes the output of each operation to the next one.

"  Alice  " | trim | upper

The same model scales to structured data and collections:

@orders
| filter(.active)
| map(.amount)
| sum

Predicates are expressions that produce Boolean values. Predicate combinators apply multiple conditions to the same input:

greater-than(0) |AND less-than(100)

See the language guide for expressions, values and types, references, structured values, and predicates.

Use Expressif

.NET SDK

The Expressif NuGet package targets .NET 8, .NET 9, and .NET 10.

dotnet add package Expressif

Create an expression and evaluate an input value:

using Expressif;

var expression = Expression.Create("trim | upper");
var result = expression.Evaluate("  Alice  ");

The .NET SDK also provides APIs for predications, typed builders, runtime context, and serialization. Continue with the .NET SDK guide.

Command-line interface

Install the CLI as a .NET global tool:

dotnet tool install --global Expressif-cli
expressif version

The CLI can evaluate expressions, process input data, validate source text, inspect parsing and binding, and display function help.

expressif evaluate '"  Alice  " | trim | upper'

Windows installers and portable archives for Windows and Linux are also available from GitHub Releases. See the CLI guide for commands, input sources, diagnostics, and automation guidance.

Documentation

The documentation site is the authoritative guide and reference:

Function, predicate, and accumulator details live in these references rather than being duplicated in this README.

Tooling

Expressif provides syntax highlighting for Visual Studio Code, TextMate consumers, Notepad++, and Rouge. Language-aware diagnostics and completion are available through the Expressif Language Server.

Download the editor assets that match your Expressif version from GitHub Releases, then follow the tooling documentation for installation and capabilities.

Contributing

Issues, feature ideas, and pull requests are welcome. Read CONTRIBUTING.md before making a change, use GitHub Discussions for broader questions, or report a problem through GitHub Issues.

License

Expressif is licensed under the Apache License 2.0.

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Expressif:

Package Downloads
NBi.Extensibility

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Expressif:

Repository Stars
Seddryck/NBi
NBi is a testing framework (add-on to NUnit) for Business Intelligence and Data Access. The main goal of this framework is to let users create tests with a declarative approach based on an Xml syntax. By the means of NBi, you don't need to develop C# or Java code to specify your tests! Either, you don't need Visual Studio or Eclipse to compile your test suite. Just create an Xml file and let the framework interpret it and play your tests. The framework is designed as an add-on of NUnit but with the possibility to port it easily to other testing frameworks.
Version Downloads Last Updated
2.6.2 34 8/29/2026
2.6.1 40 8/28/2026
2.6.0 33 8/28/2026
2.5.2 43 8/28/2026
2.5.0 36 8/28/2026
2.4.0 46 8/28/2026
2.3.0 44 8/28/2026
2.2.0 36 8/28/2026
2.1.2 41 8/28/2026
2.1.0 39 8/28/2026
2.0.12 58 8/27/2026
2.0.5 44 8/27/2026
2.0.3 40 8/27/2026
2.0.1 42 8/27/2026
2.0.0 45 8/27/2026
1.51.0 99 8/23/2026
1.50.8 79 8/23/2026
1.50.2 85 8/23/2026
Loading failed