microsoft / microsoft/node-api-dotnet

How to accomplish two way communication between .NET and JS?

Aperta
#381 2 commenti 2 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Lingua principale
C#
Stelle
783
Fork
80
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

I'm struggling to implement two way communication with this library. Issue might be related to #330.

I'm using .NET as my main program from which I load my JS (ES module, not CommonJS) like this:

[JSExport]
public class TestClass
{
    private NodejsEnvironment NodeJSEnvironment;
    private NodejsPlatform nodejsPlatform;

    public async Task Start()
    {
        var baseDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)!;
        var libnodePath = "/path/to/libnode.dll";
        nodejsPlatform = new(libnodePath);
        NodeJSEnvironment = nodejsPlatform.CreateEnvironment("/path/to/project");
        var pid = Process.GetCurrentProcess().Id;
        var inspectionUri = NodeJSEnvironment.StartInspector();
        await NodeJSEnvironment.SynchronizationContext.RunAsync(async () =>
        {
            try
            {
                var jsModule = await NodeJSEnvironment.ImportAsync("./dist/TSTest.js", esModule: true);
                var x = (int)jsModule.CallMethod("callFromDotNet");
            }
            catch (Exception e)
            {
                throw;
            }
        });
    }

    [JSExport]
    public static void CallFromJS()
    {
        Console.WriteLine("Call From JS Success");
    }
}

And my JS file looks like this:

import dotnet from 'node-api-dotnet';

const testClass = dotnet.require('TestClass');
testClass.StaticClass.CallFromJS();

function callFromDotNet() {
    return 42;
}
export { callFromDotNet };

I am using version 0.8.8 for micorosft.javascript.nodeapi and nodeapi.generator nugets. I'm using the same version for JS import.

Issue is that when importing package to JS file I get a crashing error:

Unhandled Exception: System.EntryPointNotFoundException: Arg_EntryPointNotFoundExceptionParameterizedNoLibrary, napi_create_string_utf16
   at System.Runtime.InteropServices.NativeLibrary.GetSymbol(IntPtr, String, Boolean) + 0x57
   at Microsoft.JavaScript.NodeApi.Runtime.NodejsRuntime.CreateString(JSRuntime.napi_env, ReadOnlySpan`1, JSRuntime.napi_value&) + 0x62
   at Microsoft.JavaScript.NodeApi.JSValue.CreateStringUtf16(String) + 0x72
   at Microsoft.JavaScript.NodeApi.JSValue.op_Implicit(String) + 0x15
   at Microsoft.JavaScript.NodeApi.DotNetHost.NativeHost.InitializeModule(JSRuntime.napi_env, JSRuntime.napi_value) + 0x435

I realize that in documentation it says to use import statement like import dotnet from 'node-api-dotnet/net8.0.js'; with ES module but this is also not working for me. I get error: JSException: Package subpath './net8.0.js' is not defined by "exports"

Is documentation found at https://microsoft.github.io/node-api-dotnet/ outdated?

With this code if I remove dotnet import statement and just keep the exported callFromDotNet function from .js file I am able to call JS functions from .NET (one way communication), but how can I also call .NET methods from this same .js file?

Is two way communication like this possible? What am I doing wrong?

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Direzione di ricerca

Inizia dalla documentazione all’indirizzo https://microsoft.github.io/node-api-dotnet/, issue #330, e dagli export del package node-api-dotnet v0.8.8. Riproduci gli errori napi_create_string_utf16 e package-subpath usando gli esempi C# e dei moduli ES; il lavoro è completato quando è stato determinato se il flusso documentato di importazione e comunicazione bidirezionale funziona per v0.8.8, con indicazioni corrette o un problema confermato della libreria.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Valutazione

Stack tecnologico
csharp, javascript
Ambito
backend
Tipo di issue
Bug
Difficoltà
4/5
Tempo stimato
3-5 giorni
Stato di attività
Ferma
Chiarezza
Da chiarire
Idoneità per principianti
35/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.