
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
smartlitefetch
Advanced tools
A powerful HTTP request library with advanced features: caching, mocking, debugging, middleware, and support for both node-fetch 2.x and 3.x
一个轻量级的 Node.js HTTP 客户端,基于 node-fetch,支持 v2 (CommonJS) 和 v3 (ESM) 版本。
npm install smartlitefetch --save
// V3 (ESM)
import { get, post } from 'smartlitefetch';
// GET 请求
await get('https://api.example.com/users');
// POST 请求
await post('https://api.example.com/users', { body: { name: 'John' } });
支持功能:拦截器、重试、超时、缓存、端口检查、FormData 等。
详细文档和示例请查看 GitHub 仓库。
创建实例:
import { create } from 'smartlitefetch';
const api = create({ baseURL: 'https://api.example.com' });
更多配置见 GitHub 文档。
欢迎 PR!详情见 GitHub。
FAQs
A powerful HTTP request library with advanced features: caching, mocking, debugging, middleware, and support for both node-fetch 2.x and 3.x
We found that smartlitefetch demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.