
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.
@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,355 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.

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.