
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
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 2 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.