Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@neo4j/graphql-plugin-subscriptions-amqp
Advanced tools
Subscription plugin for @neo4j/graphql, supporting AMQP brokers such as RabbitMQ
Subscription plugin for @neo4j/graphql
, currently supporting AMQP 0-9-1 brokers such as:
npm install @neo4j/graphql-plugin-subscriptions-amqp
const { Neo4jGraphQLSubscriptionsAMQPPlugin } = require("@neo4j/graphql-plugin-subscriptions-amqp");
const plugin = new Neo4jGraphQLSubscriptionsAMQPPlugin({
connection: {
hostname: "localhost",
username: "guest",
password: "guest",
},
});
const neoSchema = new Neo4jGraphQL({
typeDefs,
driver,
plugins: {
subscriptions: plugin,
},
});
To close the connection with RabbitMQ:
await plugin.close();
The following options are available in the plugin.
amqp://localhost
).neo4j.graphql.subscriptions.fx
.true
.0-9-1
supported at the moment.yarn test
to run unit testsyarn test:e2e
to run integration tests. These tests require a RabbitMQ instance running, and are not run by default
docker-compose up rabbitmq
to spin up a RabbitMQ container for testingdocker-compose up qpid
to spin up a Qpid container for testingFAQs
Subscription plugin for @neo4j/graphql, supporting AMQP brokers such as RabbitMQ
We found that @neo4j/graphql-plugin-subscriptions-amqp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.