An open API service indexing awesome lists of open source software.

https://github.com/liubin915249126/nodejs

nodejs相关学习:爬虫、服务端,文件操作,mysql
https://github.com/liubin915249126/nodejs

mysql node-schedule nodejs pupeteer

Last synced: 11 months ago
JSON representation

nodejs相关学习:爬虫、服务端,文件操作,mysql

Awesome Lists containing this project

README

          

#### 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](https://github.com/node-schedule/node-schedule)
>

#### 编写自己的node-cli