1.0.0 ⢠Published 2 years ago
n2-system-inputs-service v1.0.0
N2 System Inputs Service
Requirements
- Node.js (18+)
- Serverless (for deploying and testing your functions locally)
- Docker (for running tests)
Prerequisities
npm install
How to run tests
npm installnpm run test:int(ornpm run test:int:dockerif you would like to use docker)
Usage
Deployment
In order to deploy the example, you need to run the following command:
$ serverless deployAfter running deploy, you should see output similar to:
Deploying aws-node-project to stage dev (us-east-1)
ā Service deployed to stack aws-node-project-dev (112s)
functions:
hello: aws-node-project-dev-hello (1.5 kB)Local development
You can invoke your function locally by using the following command:
serverless invoke local --function helloWhich should result in response similar to the following:
{
"statusCode": 200,
"body": "{\n \"message\": \"Go Serverless v3.0! Your function executed successfully!\",\n \"input\": \"\"\n}"
}1.0.0
2 years ago