Iciclecreek.AdaptiveExpressions.Javascript 4.20.0

dotnet add package Iciclecreek.AdaptiveExpressions.Javascript --version 4.20.0
NuGet\Install-Package Iciclecreek.AdaptiveExpressions.Javascript -Version 4.20.0
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="Iciclecreek.AdaptiveExpressions.Javascript" Version="4.20.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Iciclecreek.AdaptiveExpressions.Javascript --version 4.20.0
#r "nuget: Iciclecreek.AdaptiveExpressions.Javascript, 4.20.0"
#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.
// Install Iciclecreek.AdaptiveExpressions.Javascript as a Cake Addin
#addin nuget:?package=Iciclecreek.AdaptiveExpressions.Javascript&version=4.20.0

// Install Iciclecreek.AdaptiveExpressions.Javascript as a Cake Tool
#tool nuget:?package=Iciclecreek.AdaptiveExpressions.Javascript&version=4.20.0

icon

Javascript Functions for AdaptiveExpression

This library provides the ability to call javascript functions from AdaptiveExpressions

Installation

To install dotnet add package Iciclecreek.AdaptiveExpressions.Javascript

Define functions

Given a javascript with functions in it:

Example: myfunctions.js

// Export functions
let exports = {};
exports.add2Numbers = add2Numbers;

function add2Numbers(x , y)
{
    return x + y;
}

(Option 1) Load functions into adaptive expressions.

To Load it, simply read the text file and call RegisterFunction with namespace.

var javascript = File.ReadAllText("myfunctions.js");
JavasacriptFunctions.RegisterFunction("contoso", javascript);

(Option 2) Load functions with Bot Framework Resource Explorer

If you call Register with a ResourceExplorer then all files of extension ".function.js" will be automatically mounted with the file name (minus .function.js) will be used as the namespace. ResourceExplorer change detection will reload the functions if the file changes.

In startup

    ResourceExplorer resourceExplorer = new ResourceExplorer(...) ... ;
    JavascriptFunctions.AddJavascriptFunctions(resourceExplorer);

NOTE: As of 4.12 you do not need to modify your startup if you are using the new runtime component It will automatically be registered in resourceExplorer mode.

To call a function that has been added

Every top level function in myfunctions.js will be mounted in the given namespace (the default namespace will be filename if you are using resource explorer). To call a function you simply use the namespace+function name with args.

Example Expression calling function registered with RegisterFunction and a namespace 'contoso'

contoso.Add2Numbers(user.age, 7)

*Example Expression defined as resource file myfunctions.js *

myfunctions.Add2Numbers(user.age, 7)

Example Expression parsing from C#

var expression = Expression.Parse("contoso.Add2Numbers(user.age, 7)");

Internal Details

This project uses Jint javascript interpreter to execute the javascript.

This engine does not have access to the file system, or to the network. Each file is loaded into it's own interpreter, so there is no shared execution environment between javascript files.

Product 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 was computed.  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. 
.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. 
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 Iciclecreek.AdaptiveExpressions.Javascript:

Package Downloads
MSMeeting-SharedActions

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.20.0 250 6/16/2023
4.19.0 209 4/15/2023
4.16.0 549 4/22/2022
4.14.0 488 7/17/2021
4.13.0 439 4/17/2021
4.12.1 382 3/9/2021
4.12.0 381 3/8/2021
4.11.0-rc0 3,400 10/28/2020
4.10.3 557 10/17/2020
4.10.0 2,091 9/3/2020
4.9.6 8,978 6/20/2020
4.9.5 1,396 6/1/2020
4.9.4 560 6/1/2020
4.9.3 615 6/1/2020
4.9.2 673 5/31/2020
4.9.1 595 5/17/2020
4.9.0-rc4.2 243 5/8/2020
4.9.0-rc4 371 5/7/2020