
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
apollo-graphql-ws-link
Advanced tools
Just the graphql-ws "Client with Apollo Recipe" as package.
npm install apollo-graphql-ws-linknpm run install @apollo/client@^3.4.0 graphql@^15.5.0 graphql-ws@^5.3.0import { WebSocketLink } from 'apollo-graphql-ws-link'new WebSocketLink({ url: 'ws://localhost:3000/graphql' })import { ApolloClient, split, createHttpLink } from '@apollo/client'
import { WebSocketLink } from 'apollo-graphql-ws-link'
// create ws link - handling subscriptions
const wsLink = new WebSocketLink({
url: `ws://localhost:3000/graphql`
})
// create http link - handling mutations and queries
const httpLink = createHttpLink({
uri: `http://localhost:3000/graphql`
})
// Create client with links
// distinguish between subscriptions, queries and mutations
// ws link should handle subscriptions
// http link should handle mutations and queries
export const client = new ApolloClient({
link: split(
({ query }) => {
const mainDefinition = getMainDefinition(query)
// If current operation is a "subscription" -> return true. So ws link handles it, else use http link
if (mainDefinition.kind === 'OperationDefinition') {
return mainDefinition.operation === 'subscription'
} else {
return false
}
},
wsLink,
httpLink
)
})
FAQs
The graphql-ws apollo link recipe as package
We found that apollo-graphql-ws-link 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.