weddinglanka_main_backend
v0.0.1
Published
authentication provider for souffle services
Downloads
5
Readme
Serverless Node.js Starter
A Serverless starter that adds ES7 syntax, serverless-offline, linting, environment variables, and unit test support. Part of the Serverless Stack guide.
Serverless Node.js Starter uses the serverless-bundle plugin (an extension of the serverless-webpack plugin) and the serverless-offline plugin. It supports:
- Generating optimized Lambda packages with Webpack
- Use ES7 syntax in your handler functions
- Use
import
andexport
- Use
- Run API Gateway locally
- Use
serverless offline start
- Use
- Support for unit tests
- Run
npm test
to run your tests
- Run
- Sourcemaps for proper error messages
- Error message show the correct line numbers
- Works in production with CloudWatch
- Lint your code with ESLint
- Add environment variables for your stages
- No need to manage Webpack or Babel configs
- Built in responses function
Hello world!
Here is the ES7 source for lambda's hello worlds:
import response from "@libs/response";
export const handler = async (event, context) => {
return response.success({
message: `Go Serverless v1.0! ${await message({
time: 1,
copy: "Your function executed successfully!",
})}`,
});
};
const message = ({ time, ...rest }) =>
new Promise((resolve, reject) =>
setTimeout(() => {
resolve(`${rest.copy} (with a delay)`);
}, time * 1000),
);
Requirements
Installation
To create a new Serverless project.
$ serverless install --url https://github.com/linerocks/serverless-nodejs-starter --name my-project
Enter the new directory
$ cd my-project
Install the Node.js packages
$ npm install
Usage
To run a function on your local
$ serverless invoke local --function hello
To simulate API Gateway locally using serverless-offline
$ serverless offline start
Deploy your project
$ serverless deploy
Deploy a single function
$ serverless deploy function --function hello
Running Tests
Run your tests using
$ npm test
We use Jest to run our tests. You can read more about setting up your tests here.
Environment Variables
To add environment variables to your project
- Rename
env.example
to.env
. - Add environment variables for your local stage to
.env
. - Uncomment
environment:
block in theserverless.yml
and reference the environment variable as${env:MY_ENV_VAR}
. WhereMY_ENV_VAR
is added to your.env
file. - Make sure to not commit your
.env
.
Linting
We use ESLint to lint your code via the serverless-bundle plugin.
You can turn this off by adding the following to your serverless.yml
.
custom:
bundle:
linting: false
To override the default config, add a .eslintrc.json
file. To ignore ESLint for specific files, add it to a .eslintignore
file.
Support
- Open a new issue if you've found a bug or have some suggestions.
- Or submit a pull request!