文件名称:scrape-brrr:简单的网页抓取
文件大小:163KB
文件格式:ZIP
更新时间:2024-04-17 18:41:37
TypeScript
scrape-brrr 简单的网页抓取。 安装 yarn add scrape-brrr 例子 刮单个项目 /** * <body> *
Best wof
* Largest wof
* </body>
*/
import { scrape } from 'scrape-brrr'
const data = await scrape ( 'http://website.com' , [
{
name : 'stats' ,
selector : 'div' ,
} ,
{
name : 'another-stats' ,
selector : 'span' ,
} ,
] )
// {
// stats: "Best wof"
// "another-st
【文件预览】:
scrape-brrr-master
----package.json(805B)
----.github()
--------workflows()
----yarn-error.log(164KB)
----jest.config.js(99B)
----LICENSE(1KB)
----src()
--------test()
--------index.spec.ts(3KB)
--------index.ts(2KB)
----tsconfig.json(506B)
----.gitignore(17B)
----README.md(3KB)
----yarn.lock(231KB)