Guest User

Untitled

a guest
Dec 15th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const fetch = require('node-fetch')
  2.  
  3. function getBody(url) {
  4.   return new Promise(resolve => {
  5.     const response = fetch(url).then(resolve);
  6.   })
  7. }
  8.  
  9. getBody("https://wykop.pl").then(html => {
  10.   console.log(html)
  11. })
Advertisement
Add Comment
Please, Sign In to add comment