Answers for "json node-fetch"

15

node js fetch

const fetch = require('node-fetch');	//npm install node-fetch

fetch('https://httpbin.org/post', {
  method: 'POST',
  body: 'a=1'
})
  .then(res => res.json())
  .then(json => {
	// Do something...
  })
  .catch(err => console.log(err));
Posted by: Guest on June-02-2020
3

javascript fetch json

fetch('./yourjson.json')
  .then((response) => response.json())
  .then((data) => {
  	console.log(data);
  })
Posted by: Guest on December-07-2020
1

how to install node fetch

$ npm install node-fetch --save
Posted by: Guest on June-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language