A wrapper for
serverless-offline
that allows multiple instances to be ran concurrently with watch functionality. This is achieved usingconcurrently
andnodemon
.
You'll need serverless
installed globally, and serverless-offline
installed into your project before running this wrapper.
npm install -g serverless-offline-multi
There are two parameters that are passed to the wrapper, directory
and port
which 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 3001
These parameters can be repeated (in pairs) for multiple services, as follows:
serverless-offline-multi --directory service-mailing --port 3001 --directory service-account --port 3002
Contributions are very welcome, and I will gladly merge in features/bug fixes.
MIT