
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.
@compassdigital/provider
Advanced tools
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
Includes a built-in HTTP server and AWS Lambda handler.
npm install @compassdigital/provider --save
var Provider = require("@compassdigital/provider");
var provider = new Provider({type: "menu"});
// Handle the 'get_menu' method
provider.on("get_menu", function(req, callback)
{
// Do something to get the result
your_function(req, function(err, res)
{
callback(err, res);
});
});
// Convenience method: respond to several methods using the same handler
provider.on(["get_menu", "get_menu_today"], () => {...});
You can configure logging behaviour by providing logging options to the constructor.
const provider = new Provider({
type: "menu"
logging: {
local_only: false,
sentry: {
dsn: SENTRY_DSN,
environment: STAGE,
},
},
});
For full options, view documentation for the logging package.
Sometimes your handler needs to know the context of the method call e.g. the user's id, location, etc. This is accessible via promises from this.context().
For example:
provider.on('get_menu', function (req, callback) {
// Get the user's id
this.context()
.user()
.then(function (user_data) {
var user_id = user_data.id;
callback(err, { message: 'Your user id was ' + user_id });
});
});
// Start on port 3000
provider.start(3000);
// Stop server
provider.stop();
Create lambda.js ending with:
var provider = (module.exports = provider.lambda); //...
Configure a Lambda function with the setting Handler:
lambda.handler
KEY_ARN="SOME PRIVATE AWS KMS KEY ARN" node test
FAQs
An easy way to get started building data providers for Compass Digital. Provides an easy interface for creating methods that will be called via JSON-RPC 2.0.
The npm package @compassdigital/provider receives a total of 21 weekly downloads. As such, @compassdigital/provider popularity was classified as not popular.
We found that @compassdigital/provider demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 54 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
/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.