VOOZH about

URL: https://www.nuget.org/packages/Iciclecreek.AdaptiveExpressions.Javascript/

⇱ NuGet Gallery | Iciclecreek.AdaptiveExpressions.Javascript 4.20.0




👁 Image
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.
<PackageVersion Include="Iciclecreek.AdaptiveExpressions.Javascript" Version="4.20.0" />
 
Directory.Packages.props
<PackageReference Include="Iciclecreek.AdaptiveExpressions.Javascript" />
 
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 Iciclecreek.AdaptiveExpressions.Javascript --version 4.20.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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.
#:package Iciclecreek.AdaptiveExpressions.Javascript@4.20.0
 
 
#: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=Iciclecreek.AdaptiveExpressions.Javascript&version=4.20.0
 
Install as a Cake Addin
#tool nuget:?package=Iciclecreek.AdaptiveExpressions.Javascript&version=4.20.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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 561 6/16/2023
4.19.0 387 4/15/2023
4.16.0 747 4/22/2022
4.14.0 682 7/17/2021
4.13.0 661 4/17/2021
4.12.1 612 3/9/2021
4.12.0 613 3/8/2021
4.11.0-rc0 3,632 10/28/2020
4.10.3 796 10/17/2020
4.10.0 2,505 9/3/2020
4.9.6 10,234 6/20/2020
4.9.5 1,758 6/1/2020
4.9.4 804 6/1/2020
4.9.3 862 6/1/2020
4.9.2 930 5/31/2020
4.9.1 831 5/17/2020
4.9.0-rc4.2 449 5/8/2020
4.9.0-rc4 625 5/7/2020