• Stars
    star
    755
  • Rank 60,125 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created over 7 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Node.js starter for Serverless Framework with ES6 and TypeScript support

Serverless Node.js Starter Seed Status

A Serverless starter that adds ES6, TypeScript, serverless-offline, linting, environment variables, and unit test support. Part of the Serverless Stack guide.

Serverless Node.js Starter uses the serverless-bundle plugin and the serverless-offline plugin. It supports:

  • Generating optimized Lambda packages with Webpack
  • Using ES6 or TypeScript in your handler functions
  • Run API Gateway locally
    • Use serverless offline start
  • Support for unit tests
    • Run npm test to run your tests
  • 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

Demo

A demo version of this service is hosted on AWS - https://z6pv80ao4l.execute-api.us-east-1.amazonaws.com/dev/hello

And here is the ES6 source behind it

export const hello = async (event, context) => {
  return {
    statusCode: 200,
    body: JSON.stringify({
      message: `Go Serverless v1.0! ${(await message({ time: 1, copy: 'Your function executed successfully!'}))}`,
      input: event,
    }),
  };
};

const message = ({ time, ...rest }) => new Promise((resolve, reject) =>
  setTimeout(() => {
    resolve(`${rest.copy} (with a delay)`);
  }, time * 1000)
);

Upgrading from v1.x

We have detailed instructions on how to upgrade your app to the v2.0 of the starter if you were using v1.x before. Read about it here.

Requirements

Installation

To create a new Serverless project.

$ serverless install --url https://github.com/AnomalyInnovations/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

  1. Rename env.example to .env.
  2. Add environment variables for your local stage to .env.
  3. Uncomment environment: block in the serverless.yml and reference the environment variable as ${env:MY_ENV_VAR}. Where MY_ENV_VAR is added to your .env file.
  4. Make sure to not commit your .env.

TypeScript

If serverless-bundle detects a tsconfig.json in your service root, it'll compile it using TypeScript. We have a separate starter for TypeScript here, Serverless TypeScript Starter.

Linting

We use ESLint to lint your code via serverless-bundle.

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!

This repo is maintained by Serverless Stack.

More Repositories

1

serverless-stack-demo-client

Source for the demo app client in the Serverless Stack Guide
JavaScript
636
star
2

serverless-bundle

Optimized packages for ES6 and TypeScript Node.js Lambda functions without any configuration.
JavaScript
531
star
3

serverless-stack-demo-api

Source for the demo app API in the Serverless Stack Guide
JavaScript
517
star
4

aws-api-gateway-cli-test

A simple CLI to test API Gateway endpoints with IAM authorization
JavaScript
120
star
5

serverless-stack-demo-ext-api

Source for the extended version of the demo app API in Serverless Stack.
JavaScript
92
star
6

serverless-lerna-yarn-starter

A Serverless monorepo starter that uses Lerna and Yarn Workspaces.
JavaScript
83
star
7

serverless-typescript-starter

A Serverless starter that adds TypeScript, serverless-offline, linting, environment variables, and unit test support.
TypeScript
80
star
8

serverless-stack-demo-mono-api

A sample mono-repo multi-service Serverless application with AWS CloudFormation cross-stack references.
JavaScript
52
star
9

serverless-stack-demo-user-mgmt-client

Source for demo app client with user management in Serverless-Stack.com
JavaScript
41
star
10

serverless-stack-demo-ext-resources

Source for the extended version of the demo app resources in Serverless Stack.
JavaScript
40
star
11

serverless-python-starter

Python starter project for Serverless Framework
Python
37
star
12

serverless-stack-demo-fb-login-client

Source for the Facebook login demo app client in Serverless-Stack.com
JavaScript
31
star
13

sigV4Client

A standalone client for signing API Gateway requests for Signature Version 4
JavaScript
17
star
14

toolbeam-cli

CLI for Toolbeam
JavaScript
16
star
15

toolbeam-example-api

A simple API for the Toolbeam examples
JavaScript
4
star
16

serverless-cd-demo-a1c8

A demo Serverless Projects deployed using Seed
JavaScript
2
star