
Security News
ESLint Adds Official Support for Linting HTML
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
@theydo/graphql-directive-requires-authentication
Advanced tools
GraphQL directive for checking authentication through context
The point of this directive is not to validate JWT tokens, since this is frequently a project-specific implementation. Instead it is expected that resolving token status is done in the Apollo getContext hook, where the validated token is used to extend the context object (user information).
This directive will only assert the "isAuthenticated" status coming from the context object.
To use the directive, you should start by adding the directive to your GraphQL schema:
@directive requiresAuthentication on FIELD_DEFINITION
After this, you can create the directive by passing an isAuthenticated
resolver
(and optionally a custom error) and the directive will do the rest:
const requiresAuthentication = requiresAuthenticationDirective<Context>({
isAuthenticated: (context) => !!context.auth?.token,
throwError: new MyCustomError('WITH_CUSTOM_ERROR_CODE'),
})
new ApolloServer({
schemaDirectives: {
requiresAuthentication,
},
})
FAQs
GraphQL directive for checking authentication through context
The npm package @theydo/graphql-directive-requires-authentication receives a total of 0 weekly downloads. As such, @theydo/graphql-directive-requires-authentication popularity was classified as not popular.
We found that @theydo/graphql-directive-requires-authentication demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.
Security News
CISA is discontinuing official RSS support for KEV and cybersecurity alerts, shifting updates to email and social media, disrupting automation workflows.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.