Replies: 1 comment 2 replies
-
|
When you call Edge.js function you are passing it parameters a simple example would be var edge = require('edge-js');
var helloWorld = edge.func(function () {/*
async (dynamic input) => {
return "Welcome " + input.name + " " + input.surname;
}
*/});
helloWorld({name: 'John', surname: 'Smith'}, function (error, result) {
if (error) throw error;
console.log(result);
});Could you create an example where you pass a stream as parameter? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to use asp.net core's http3 inside nodejs, however, it seems we have to handle streams for file upload so I wanted to know if you have marshalled .net streams to nodejs streams? If not, how can I implement it?
Beta Was this translation helpful? Give feedback.
All reactions