I'm new in Node.js, and I use edge for my app.
In app.js I have this code
var edge = require('edge');
var helloWorld = edge.func(function () {/*
async (input) => {
return ".NET Welcomes " + input.ToString();
}
*/});
helloWorld('JavaScript', function (error, result) {
if (error) throw error;
console.log(result);
});
When i run it i have this error
Exception non gérée : System.MissingMethodException: Méthode introuvable : 'Bool ean System.Web.Script.Serialization.ScriptIgnoreAttribute.get_ApplyToOverrides() '. à ClrFunc.MarshalCLRObjectToV8(Handle* , Object netdata) à ClrFunc.MarshalCLRExceptionToV8(Handle* , Exception exception) à ClrFunc.Initialize(Handle* , Arguments* args) à initializeClrFunc(Handle* , Arguments* args)
Have you any idea how solving this problem? Thanks