
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@axetroy/crawler
Advanced tools
一个快速,简单,易用的 node.js 爬虫框架.
WARNING: 当前仍处于开发阶段,任何存在的特性都可能会更改或者移除
npm install @axetroy/crawler
import { Crawler, Provider, Response } from "@axetroy/crawler";
class MyProvider implements Provider {
name = "scrapinghub";
urls = ["https://blog.scrapinghub.com"];
async parse($: Response) {
const $nextPage = $("a.next-posts-link").eq(0);
if ($nextPage) {
$.follow($nextPage.prop("href"));
}
return $(".post-header>h2")
.map((_, el) => $(el).text())
.get();
}
}
const config: Options = {
timeout: 1000 * 5,
retry: 3
};
new Crawler(MyProvider, config)
.on("data", (articles: string[]) => {
for (const article of articles) {
process.stdout.write(article + "\n");
}
})
.on("error", (err, task) => {
console.log(`request fail on ${task.url}: ${err.message}`);
})
.start();
如何运行 demo?
> npx ts-node examples/basic.ts
这里有相关的例子
The Anti 996 License
FAQs
crawler framework for nodejs
We found that @axetroy/crawler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.