当前位置:网站首页>Nodejs crawler
Nodejs crawler
2022-07-06 15:59:00 【Star age Cao Botao】
nodejs You can also play with reptiles
Need to pass through npm Down in two modules .
npm init -y
npm install -S axios cheerio
establish index.js file
const cheerio = require("cheerio")
const axios = require("axios")
const fs = require("fs")
if (!fs.existsSync("download")) {
fs.mkdirSync("download", 777)
}
console.log(" Start crawling ")
axios.get("http://www.scsoul.top/list/1/20").then(r => {
const $ = cheerio.load(r.data)
$("img").each((index, item) => {
if (index != 0) {
var url = $(item).attr("src");
console.log(" Start the download " + url)
axios.get(url, {
responseType: 'stream' }).then(resp => {
let writer = fs.createWriteStream("./download/" + index + ".png");
resp.data.pipe(writer);
console.log(index+".png Download complete ")
})
}
})
})
cmd Input
node index.js
You can see that the file has been downloaded
边栏推荐
- Cost accounting [24]
- 【练习-6】(PTA)分而治之
- China's salt water membrane market trend report, technological innovation and market forecast
- cs零基础入门学习记录
- Essai de pénétration (1) - - outils nécessaires, navigation
- Opencv learning log 31 -- background difference
- Opencv learning log 12 binarization of Otsu method
- [exercise-8] (UVA 246) 10-20-30== simulation
- Perinatal Software Industry Research Report - market status analysis and development prospect forecast
- 力扣刷题记录--完全背包问题(一)
猜你喜欢

Information security - threat detection - detailed design of NAT log access threat detection platform

Penetration test (7) -- vulnerability scanning tool Nessus

Gartner: five suggestions on best practices for zero trust network access

VS2019初步使用
frida hook so层、protobuf 数据解析

Record of force deduction and question brushing

Ball Dropping

Penetration test (3) -- Metasploit framework (MSF)

渗透测试 ( 2 ) --- 渗透测试系统、靶机、GoogleHacking、kali工具

毕业才知道IT专业大学生毕业前必做的1010件事
随机推荐
最全编程语言在线 API 文档
Flink 使用之 CEP
Cost accounting [20]
7-1 懂的都懂 (20 分)
C语言数组的概念
STM32 how to use stlink download program: light LED running light (Library version)
Research Report on market supply and demand and strategy of China's land incineration plant industry
Cost accounting [14]
Research Report of peripheral venous catheter (pivc) industry - market status analysis and development prospect prediction
Web based photo digital printing website
滲透測試 ( 1 ) --- 必備 工具、導航
【练习-6】(Uva 725)Division(除法)== 暴力
Borg Maze (BFS+最小生成树)(解题报告)
China's PCB connector market trend report, technological innovation and market forecast
MATLAB综合练习:信号与系统中的应用
Shell脚本编程
Research Report of exterior wall insulation system (ewis) industry - market status analysis and development prospect prediction
Accounting regulations and professional ethics [3]
Determine the Photo Position
C语言学习笔记