Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const fetch = require('node-fetch')
- function getBody(url) {
- return new Promise(resolve => {
- const response = fetch(url).then(resolve);
- })
- }
- getBody("https://wykop.pl").then(html => {
- console.log(html)
- })
Advertisement
Add Comment
Please, Sign In to add comment