8 lines
145 B
JavaScript
8 lines
145 B
JavaScript
'use strict'
|
|
|
|
const fetch = require('node-fetch')
|
|
|
|
fetch('https://google.com')
|
|
.then((res) => res.text())
|
|
.then((html) => console.log(html))
|