Yet another serverless ☁️ API with Lambda and Node.js
Make sure node 14.x and yarn are installed.
$ git clone git@github.com:tux86/my-player-performance-api.git
$ cd my-player-performance-api
$ yarn install
Inside this project root directory, a template environment file .env.template is available for you.
Make a copy of this file to .env.dev using cp command as below.
$ cp .env.template .env.dev
now open .env.dev using a text editor, the content should look like this :
AWS_PROFILE=****
AWS_REGION=eu-west-1
DEPLOYMENT_BUCKET_NAME_PREFIX=
ENDPOINT_URL=****
NODE_ENV=development
Update the content by setting a value for each the following variables
-
AWS_PROFILE: your aws profile name (admin credentials required)
-
AWS_REGION: the aws region (example: eu-west-1)
-
DEPLOYMENT_BUCKET_NAME_PREFIX: optional (The default value is the service name).
🚨 IMPORTANT 🚨 : You should set a prefix if the bucket name is not available because bucket name is unique across all AWS accounts
-
ENDPOINT_URL: the dataset endpoint URL
Use the following commands inorder to start the project locally.
$ yarn build # build project
$ yarn start # start serverless offline mode
Once started, you will see a message in the console (as shown below) indicating a successful startup
┌─────────────────────────────────────────────────────────────────────────────────┐
│ │
│ GET | http://127.0.0.1:3000/players │
│ POST | http://127.0.0.1:3000/2015-03-31/functions/listPlayers/invocations │
│ GET | http://127.0.0.1:3000/players/{id} │
│ POST | http://127.0.0.1:3000/2015-03-31/functions/getPlayerById/invocations │
│ │
└─────────────────────────────────────────────────────────────────────────────────┘
$ yarn test
To make a deployment to AWS cloud, you need to execute the following command:
$ yarn sls:deploy
Verify that the deployment completed successfully. You should see the following in the console :
✔ Service deployed to stack my-player-performance-api-dev (32s)
endpoints:
GET - https://abcdef1234.execute-api.eu-west-1.amazonaws.com/players
GET - https://abcdef1234.execute-api.eu-west-1.amazonaws.com/players/{id}
functions:
listPlayers: my-player-performance-api-listPlayers-dev (6.3 MB)
getPlayerById: my-player-performance-api-getPlayerById-dev (6.3 MB)
Monitor all your API routes with Serverless Console: run "serverless --console"
Done in 36.32s
$ yarn sls:remove
That's All Folks ! 😉