This is Node.js based serverless api boilerplate with built in dynamodb support
- Serverless
- Node.js
- Dynamodb support
- Offline support (using serverless-offline and docker)
- Example endpoints
- Circleci integration
- Secret management
- Node 12
- Serverless
npm install -g serverless
make setup
make local
open http://localhost:3000
Secrets are stored in a encrypted external file, where $KEY is your encryption key.
- Encrypt
openssl aes-256-cbc -e -in .circlerc -out .circlerc-crypt -k $KEY
- Decrypt
openssl aes-256-cbc -d -in .circlerc-crypt -out .circlerc -k $KEY
This boilerplate uses semantic versioning.
Want to contribute? Awesome. Just send a pull request.
Serverless-Node-Dynamodb-Boilerplate is released under the MIT License.