Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 436 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 436 Bytes

1.爬虫

2. puppeteer的使用

相关api:

  const browser = await puppeteer.launch();//生成浏览器实例
  const page = await browser.newPage();//生成页面
  await page.goto(baseUrl);//进入到某一页面
  await browser.close();//关闭浏览器实例

node 定时任务 node-schedule

node-schedule

编写自己的node-cli