@jswork/node-fetch-html
v1.0.2
Published
Fetch html with node-fetch.
Downloads
12
Readme
node-fetch-html
Fetch html with node-fetch.
installation
npm install -S @jswork/node-fetch-html
usage
import nfh from '@jswork/node-fetch-html';
nfh('http://www.baidu.com').then(($) => {
console.log($('title').text()); // 百度
});