
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@envelop/graphql-modules
Advanced tools
This plugins integrates [`graphql-modules`](https://github.com/Urigo/graphql-modules) execution lifecycle into the GraphQL execution flow.
@envelop/graphql-modulesThis plugins integrates graphql-modules execution
lifecycle into the GraphQL execution flow.
If you are using graphql-modules dependency injection - this setup is needed in order to make sure
Injector is created and destroyed at the right time.
yarn add @envelop/graphql-modules
import { execute, parse, specifiedRules, subscribe, validate } from 'graphql'
import { createApplication } from 'graphql-modules'
import { envelop, useEngine } from '@envelop/core'
import { useGraphQLModules } from '@envelop/graphql-modules'
const myApp = createApplication({
modules: [
/* ... */
]
})
const getEnveloped = envelop({
plugins: [
useEngine({ parse, validate, specifiedRules, execute, subscribe }),
// ... other plugins ...
useGraphQLModules(myApp)
]
})
Then, you can use GraphQL-Modules injector in your resolvers:
const resolvers = {
Query: {
foo: (root, args, context, info) => {
const myProviderInstance = context.injector.get(/* ... */)
}
}
}
FAQs
This plugins integrates [`graphql-modules`](https://github.com/Urigo/graphql-modules) execution lifecycle into the GraphQL execution flow.
The npm package @envelop/graphql-modules receives a total of 9,729 weekly downloads. As such, @envelop/graphql-modules popularity was classified as popular.
We found that @envelop/graphql-modules demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Security News
TypeScript 6.0 will be the last JavaScript-based major release, as the project shifts to the TypeScript 7 native toolchain with major build speedups.