
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
@node-idempotency/fastify
Advanced tools
fastify plugin that provides Race-Condition free idempotency for HTTP requests, preventing unintended duplicate operations.
A Fastify plugin that makes requests idempotent
Implements @node-idempotency/core
as fastify plugin.
Network requests are unpredictable; clients/proxies may send duplicate or concurrent requests due to retries or network issues. To ensure smooth operation, servers must process each request only once. This package detects and handles duplicates, preventing issues like double charging the customer. It's:
npm i @node-idempotency/fastify
import fastify from "fastify";
import fp from "fastify-plugin";
import {
idempotencyAsPlugin,
type IdempotencyPluginOptions,
StorageAdapterEnum,
} from "@node-idempotency/fastify";
const server = fastify();
server.register(fp<IdempotencyPluginOptions>(idempotencyAsPlugin), {
storage:{
adapter: StorageAdapterEnum.memory
options: ...adapterOptions
},
//...IdempotencyOptions
});
//...your rest of logic
export default server;
storage.adapter
can either be memory
, redis
or an instance of Storage
interface.storage.options
are options to the storage client, required for redis
, is client options of redis client.idempotencyOptions
are the IdempotencyOptions
passed to @node-idempotency/core/Idempotency
FAQs
fastify plugin that provides Race-Condition free idempotency for HTTP requests, preventing unintended duplicate operations.
The npm package @node-idempotency/fastify receives a total of 184 weekly downloads. As such, @node-idempotency/fastify popularity was classified as not popular.
We found that @node-idempotency/fastify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.