
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
graphql-rate-limit
Advanced tools
A GraphQL directive to add basic but granular rate limiting to your Queries or Mutations.
max per window argumentsyarn add graphql-rate-limit
directive @rateLimit(
max: Int,
window: Int,
message: String,
identityArgs: [String],
) on FIELD_DEFINITION
type Query {
# Rate limit to 5 per second
getItems: [Item] @rateLimit(window: 1000, max: 5)
# Rate limit access per item ID
getItem(id: ID!): Item @rateLimit(identityArgs: ["id"])
}
type Mutation {
# Rate limit with a custom error message
createItem(title: String!): Item @rateLimit(message: "You are doing that too often.")
}
Create a configured GraphQLRateLimit class.
const { createRateLimitDirective } = require('graphql-rate-limit');
// OR
import { createRateLimitDirective } from 'graphql-rate-limit';
const GraphQLRateLimit = createRateLimitDirective({
/**
* `identifyContext` is required and used to identify the user/client. The most likely cases
* are either using the context's request.ip, or the user ID on the context.
* A function that accepts the context and returns a string that is used to identify the user.
*/
identifyContext: (ctx) => ctx.user.id, // Or could be something like: return ctx.req.ip;
/**
* `store` is optional as it defaults to an InMemoryStore. See the implementation of InMemoryStore if
* you'd like to implement your own with your own database.
*/
store: new MyCustomStore(),
});
Add GraphQLRateLimit to your GraphQL server configuration. Example using Apollo Server:
const server = new ApolloServer({
typeDefs,
resolvers,
schemaDirectives: {
rateLimit: GraphQLRateLimit
}
});
Use in your GraphQL Schema.
# This must be added to the top of your schema.
directive @rateLimit(
max: Int,
window: Int,
message: String,
identityArgs: [String],
) on FIELD_DEFINITION
type Query {
# Limit queries to getThings to 10 per minute.
getThings: [Thing] @rateLimit(max: 10, window: 60000)
}
type Query {
# Limit attempts to login with a particular email to 10 per minute.
login(email: String!, password: String!): String @rateLimit(max: 10, window: 60000, identityArgs: ["email"])
}
FAQs
Add Rate Limiting To Your GraphQL Resolvers πββ
The npm package graphql-rate-limit receives a total of 0 weekly downloads. As such, graphql-rate-limit popularity was classified as not popular.
We found that graphql-rate-limit 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.