
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
graphql-kafkanode-subscriptions
Advanced tools
Apollo graphql subscriptions over Kafka protocol
One producer and one consumer for each node instance. Communication happens over a single kafka topic.
npm install graphql-kafka-subscriptions
import { KafkaPubSub } from 'graphql-kafka-subscriptions'
export const pubsub = new KafkaPubSub({
topic: 'anything',
host: 'INSERT_KAFKA_IP',
port: 'INSERT_KAFKA_PORT',
})
With multiple Kafka nodes
export const pubsub = new KafkaPubSub({
topic: 'anything',
host: 'kafka-10.development.foobar.com:9092,kafka-21.development.foobar.com:9092,kafka-22.development.foobar.com:9092',
})
// as mentioned in the comments of https://github.com/ancashoria/graphql-kafka-subscriptions/issues/4
// you will need to upate the site calls of `publish` in your application as called out below.
// the stock PubSub::publish expects a string and an object
pubsub.publish('messageAdded', {
messageAdded: newMessage,
channelId: message.channelId
});
// KafkaPubSub::publish expects the first parameter to be inserted into the object
pubsub.publish({
channel: 'messageAdded',
messageAdded: newMessage,
channelId: message.channelId
});
Special thanks to:
Help greatly appreciated
FAQs
Apollo graphql subscription over Kafka protocol
The npm package graphql-kafkanode-subscriptions receives a total of 2 weekly downloads. As such, graphql-kafkanode-subscriptions popularity was classified as not popular.
We found that graphql-kafkanode-subscriptions 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.