
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.
@upstash/sdk
Advanced tools
@upstash/sdk is an umbrella HTTP/REST based client for Typescript, built on top of other Upstash products and SDKs.
npm install @upstash/sdk
const client = new Upstash({
email: "your-upstash-email@gmail.com",
token: "developer-token",
});
//OR
//If you have your env keys already in your .env file, you don't have to pass them explicitly
const client = new Upstash();
//VECTOR SDK
const createRes = await client.createVectorIndex({
name: "uptash-rocks",
region: "eu-west-1",
dimension_count: 2,
similarity_function: "COSINE",
type: "fixed",
});
const index = await client.newVectorClient(createRes.id);
await index.info();
const indexes = await client.listVectorIndexes();
await client.deleteVectorIndex(createRes.id);
//REDIS SDK
const createRes = await client.createRedisDatabase({
name: "uptash-rocks",
region: "eu-central-1",
tls: true,
});
const redis = await client.newRedisClient(createRes.database_name);
await redis.incr("hut-two-three-four");
const dbs = await client.listRedisDatabases();
await client.deleteRedisDatabase(createRes.database_name);
//QSTASH SDK
const { client, receiver } = await client.newQStashClient();
await qstashClient.publishJSON();
await qstashReceiver.verify();
We have a Discord for common problems. If you can't find a solution, please open an issue.
See the documentation for details.
bun run test
bun run build
FAQs
An umbrella SDK for all other Upstash SDKs
We found that @upstash/sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.

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.