Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
aws-connector
Advanced tools
A wrapper around some aws-sdk components, adding a promised based interface.
The connector has two jobs:
Other than this, the connector is completely transparent and simply mirrors the behaviour of the aws-sdk.
var AWSConnector = require('aws-connector');
//Add a base configuration.
AWSConnector.dynamo.configure({ region: 'foo' });
//Make a request
AWSConnector.dynamo
//Extend the base configuration with connection info.
.connect({ accessKeyId: 'key', secretAccessKey: 'secret' })
//Do your operation. It will return a promise.
.scan({ TableName: 'books' })
.then(function(books) {
console.log(books)
});
The options passed to dynamo.configure
and dynamo.connect
are passed
directly to the aws-sdk DynamoDB client constructor.
We have an .editorconfig
file to help us having a consistent coding style.
Please install a plugin for your editor.
We use jshint
for code linting.
There are plugins for that too.
We use gulp as a task runner. Install it globally first: npm install -g gulp
.
To see a list of gulp commands, run:
gulp help
In the package.json
you can see a pre-commit and pre-push hook.
On commiting or pushing these commands are executed.
If they fail, the commit/push will fail.
Add the --no-verify
flag to your commit or push to bypass these checks.
FAQs
Connector for the following AWS services: dynamo, sns, sqs
The npm package aws-connector receives a total of 1 weekly downloads. As such, aws-connector popularity was classified as not popular.
We found that aws-connector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.