Microsoft.JavaScript.NodeApi 0.7.33

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

// Install Microsoft.JavaScript.NodeApi as a Cake Tool
#tool nuget:?package=Microsoft.JavaScript.NodeApi&version=0.7.33                

Node API for .NET: JavaScript + .NET Interop

This project enables advanced interoperability between .NET and JavaScript in the same process.

  • Load .NET assemblies and call .NET APIs in-proc from a JavaScript application.
  • Load JavaScript packages and call JS APIs in-proc from a .NET application.

Interop is high-performance and supports TypeScript type-definitions generation, async (tasks/promises), streams, and more. It uses Node API so it is compatible with any Node.js version (without recompiling) or other JavaScript runtime that supports Node API.

⚠️ Status: Public Preview - Most functionality works well, though there are some known limitations around the edges, and there may still be minor breaking API changes.

Documentation

Getting-started guidance, feature details, and API reference documentation are published at https://microsoft.github.io/node-api-dotnet

Minimal example - JS calling .NET

// JavaScript
const Console = require('node-api-dotnet').System.Console;
Console.WriteLine('Hello from .NET!'); // JS writes to the .NET console API

Minimal example - .NET calling JS

// C#
interface IConsole { void Log(string message); }

var nodejs = new NodejsPlatform(libnodePath).CreateEnvironment();
nodejs.Run(() =>
{
    var console = nodejs.Import<IConsole>("global", "console");
    console.Log("Hello from JS!"); // C# writes to the JS console API
});

Packages

Depending on the scenario, either NPM or NuGet packages may be used:

See Packages & Releases for details.

Development

For information about building, testing, and debugging this project, see README-DEV.md.

Contributions require agreement to the Contributor License Agreement.

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Trademarks

This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.

<br/> <br/>

.NET + JS scene

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  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 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. 
.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 is compatible.  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

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Microsoft.JavaScript.NodeApi:

Repository Stars
microsoft/node-api-dotnet
Advanced interoperability between .NET and JavaScript in the same process.
Version Downloads Last updated
0.7.33 55 7/24/2024
0.7.32 50 7/24/2024
0.7.31 101 7/22/2024
0.7.30 123 7/17/2024
0.7.29 58 7/16/2024
0.7.28 45 7/15/2024
0.7.26 59 7/12/2024
0.7.19 189 6/21/2024
0.7.18 288 6/17/2024
0.7.17 99 6/14/2024
0.7.16 111 6/14/2024
0.7.14 183 5/16/2024
0.7.13 123 5/15/2024
0.7.12 140 5/14/2024
0.7.11 124 5/9/2024
0.7.10 147 5/6/2024
0.7.9 109 5/2/2024
0.7.8 165 4/19/2024
0.7.7 110 4/17/2024
0.7.6 104 4/16/2024
0.7.5 125 4/14/2024
0.7.4 98 4/12/2024
0.7.3 106 4/11/2024
0.7.2 93 4/10/2024
0.7.1 126 4/8/2024
0.6.8 116 4/8/2024
0.6.7 108 4/8/2024
0.6.6 111 4/8/2024
0.6.5 128 4/5/2024
0.6.4 112 4/5/2024
0.6.3 137 3/29/2024
0.6.2 125 3/27/2024
0.6.1 138 3/26/2024
0.5.19 331 3/23/2024
0.5.18 123 3/21/2024
0.5.17 107 3/21/2024
0.5.16 148 3/20/2024
0.5.15 114 3/20/2024
0.5.14 123 3/20/2024
0.5.13 127 3/14/2024
0.5.12 124 3/12/2024
0.5.11 107 3/12/2024
0.5.10 110 3/12/2024
0.5.8 120 3/12/2024
0.5.7 125 3/11/2024
0.5.6 116 3/11/2024
0.5.4 120 3/8/2024
0.5.2 121 3/1/2024
0.5.1 117 2/27/2024
0.4.34 168 2/18/2024
0.4.33 356 2/6/2024
0.4.27 482 12/14/2023
0.4.26 331 11/21/2023
0.4.25 109 11/21/2023
0.4.24 106 11/21/2023
0.4.23 105 11/21/2023
0.4.22 391 11/11/2023
0.4.21 103 11/10/2023
0.4.20 100 11/10/2023
0.4.19 93 11/9/2023
0.4.18 114 11/6/2023
0.4.17 101 11/5/2023
0.4.16 166 10/26/2023
0.4.4 420 6/12/2023
0.3.2 140 5/28/2023
0.3.1 131 5/17/2023
0.2.33 234 5/17/2023
0.2.32 148 5/16/2023
0.2.31 130 5/9/2023
0.2.30 123 5/9/2023
0.2.29 129 5/9/2023
0.2.28 123 5/9/2023
0.2.27 121 5/7/2023
0.2.26 163 5/3/2023
0.2.25 156 5/1/2023
0.2.24 126 5/1/2023
0.2.23 142 4/30/2023
0.2.22 146 4/29/2023
0.2.21 147 4/28/2023
0.2.20 178 4/26/2023
0.2.19 145 4/26/2023
0.2.18 168 4/25/2023
0.2.17 148 4/25/2023
0.2.16 150 4/24/2023
0.2.15 172 4/23/2023
0.2.14 139 4/23/2023
0.2.13 152 4/19/2023
0.2.12 149 4/18/2023
0.2.11 209 4/17/2023