当前位置:网站首页>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 [18]
- Information security - Analysis of security orchestration automation and response (soar) technology
- 毕业才知道IT专业大学生毕业前必做的1010件事
- 信息安全-安全编排自动化与响应 (SOAR) 技术解析
- 用C语言写网页游戏
- Accounting regulations and professional ethics [3]
- Information security - security professional name | CVE | rce | POC | Vul | 0day
- Record of force deduction and question brushing
- C 基本语法
- Penetration test (1) -- necessary tools, navigation
猜你喜欢
随机推荐
渗透测试 2 --- XSS、CSRF、文件上传、文件包含、反序列化漏洞
JS调用摄像头
Cost accounting [16]
信息安全-威胁检测-NAT日志接入威胁检测平台详细设计
渗透测试 ( 4 ) --- Meterpreter 命令详解
Accounting regulations and professional ethics [5]
毕业才知道IT专业大学生毕业前必做的1010件事
Research Report on market supply and demand and strategy of China's land incineration plant industry
渗透测试 ( 8 ) --- Burp Suite Pro 官方文档
Penetration testing (5) -- a collection of practical skills of scanning King nmap and penetration testing tools
Opencv learning log 30 -- histogram equalization
Information security - security professional name | CVE | rce | POC | Vul | 0day
Cost accounting [19]
信息安全-威胁检测引擎-常见规则引擎底座性能比较
B - 代码派对(女生赛)
Gartner:关于零信任网络访问最佳实践的五个建议
Opencv learning log 15 count the number of solder joints and output
CS zero foundation introductory learning record
Market trend report, technical innovation and market forecast of lip care products in China and Indonesia
Essai de pénétration (1) - - outils nécessaires, navigation