Hi there!
I’m trying to Save Json file in local disk.
I’m useing Nfetch in javascript node and “POST JSON data” method in Notch reference Manual.
but, not working.
function testPostJSONResponse(response) {
if (response.ok && response.status === 200) {
Log(‘POST JSON success’);
}
}
///////
Where is wrong this code?
I want to save Text file or json file to local disk.
I don’t need to the response from an HTTP call.
I’m Looking for a way to save in json from Notch parameter data.
Is there any good way?