Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
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
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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.