1.2.0 • Published 5 years ago
serverless-offline-multi v1.2.0
serverless-offline-multi
A wrapper for
serverless-offlinethat allows multiple instances to be ran concurrently with watch functionality. This is achieved usingconcurrentlyandnodemon.
Prerequisites
You'll need serverless installed globally, and serverless-offline installed into your project before running this wrapper.
Install
npm install -g serverless-offline-multiUsage
There are two parameters that are passed to the wrapper, directory and portwhich specify the relative directory and port number that you wish for the serverless-offline process to listen on, respectively.
serverless-offline-multi --directory service-mailing --port 3001These parameters can be repeated (in pairs) for multiple services, as follows:
serverless-offline-multi --directory service-mailing --port 3001 --directory service-account --port 3002HTTP Port & Lambda Port
- By default,
httpPortis always the same ashttp. lambdaPortis alwayshttpPort/http+ 1000. Example, running with--port 3004will result in:http: 3004,httpPort: 3004andlambdaPort: 4004(port + 1000 to avoid conflict)
Contributing
Contributions are very welcome, and I will gladly merge in features/bug fixes.
License
MIT