Answers for "node js send 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
-1

node fetch response body

 fetch('https://api.github.com/users/github')    
   .then(res => res.json())    
   .then(json => console.log(json));
Posted by: Guest on June-30-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language