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
<PackageReference Include="Iciclecreek.AdaptiveExpressions.Javascript" Version="4.20.0" />
paket add Iciclecreek.AdaptiveExpressions.Javascript --version 4.20.0
#r "nuget: Iciclecreek.AdaptiveExpressions.Javascript, 4.20.0"
// 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
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 | 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 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. |
-
.NETStandard 2.0
- Jint (>= 3.0.0-beta-1778)
- Microsoft.Bot.Builder (>= 4.20.0)
- Microsoft.Bot.Builder.Dialogs.Declarative (>= 4.20.0)
- Microsoft.Extensions.DependencyInjection (>= 3.1.22)
- Newtonsoft.Json (>= 13.0.3)
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 | 336 | 6/16/2023 |
4.19.0 | 231 | 4/15/2023 |
4.16.0 | 572 | 4/22/2022 |
4.14.0 | 500 | 7/17/2021 |
4.13.0 | 461 | 4/17/2021 |
4.12.1 | 403 | 3/9/2021 |
4.12.0 | 400 | 3/8/2021 |
4.11.0-rc0 | 3,419 | 10/28/2020 |
4.10.3 | 575 | 10/17/2020 |
4.10.0 | 2,156 | 9/3/2020 |
4.9.6 | 9,304 | 6/20/2020 |
4.9.5 | 1,448 | 6/1/2020 |
4.9.4 | 571 | 6/1/2020 |
4.9.3 | 626 | 6/1/2020 |
4.9.2 | 693 | 5/31/2020 |
4.9.1 | 614 | 5/17/2020 |
4.9.0-rc4.2 | 255 | 5/8/2020 |
4.9.0-rc4 | 390 | 5/7/2020 |