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
- Host: GitHub
- URL: https://github.com/liubin915249126/nodejs
- Owner: liubin915249126
- Created: 2018-01-02T07:06:13.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-11T01:47:56.000Z (about 3 years ago)
- Last Synced: 2025-02-14T17:19:46.083Z (about 1 year ago)
- Topics: mysql, node-schedule, nodejs, pupeteer
- Language: JavaScript
- Homepage:
- Size: 2.38 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
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