
Security News
Package Maintainers Call for Improvements to GitHub’s New npm Security Plan
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
aws-snsclient
Advanced tools
The main SNSClient
callback now returns the more accepted Node.js method of function(err, msg)
. v0.1 sent both the error and message as a single argument.
$ npm install aws-snsclient
var http = require('http')
, SNSClient = require('aws-snsclient');
var client = SNSClient(function(err, message) {
console.log(message);
});
http.createServer(function(req, res) {
if(req.method === 'POST' && req.url === '/receive') {
return client(req, res);
}
res.writeHead(404);
res.end('Not found.');
}).listen(9000);
Your client only needs to accept one callback, which accepts an object of the decoded message sent from the SNS topic.
message
is the raw JSON. You'll probably want access to: message.Message
to get the actual message that you sent.
The initial confirmation request sent out by Amazon is automatically confirmed at the same endpoint. No additional effort needed.
Signatures are automatically verified, but we can optionally verify the correct account id, region, and topics.
var auth = {
verify: false
};
var client = SNSClient(auth, function(err, message) {
console.log(message);
});
var auth = {
region: 'us-east-1'
, account: 'xxx'
, topic: 'xxx'
};
var client = SNSClient(auth, function(err, message) {
console.log(message);
});
var express = require('express')
, app = express.createServer()
, SNSClient = require('aws-snsclient');
var auth = {
region: 'us-east-1'
, account: 'xxx'
, topic: 'xxx'
}
var client = SNSClient(auth, function(err, message) {
console.log(message);
});
app.post('/receive', client);
app.listen(9000);
FAQs
A client for parsing Amazon AWS SNS requests.
We found that aws-snsclient 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
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.