Open-source collection of example HTTP Microservices in multiple programming languages
Any of these examples may be run locally by cloning this repository and navigating to the directory of the specific example and running:
For example:
git clone https://github.com/stackvana/microcule-examples
cd coin
npm install
npm start
Will start a local service that returns crypto-currency prices.
Running npm start
will use the stack
CLI tool to start the example service on it's on HTTP server.
You might also find it useful to install microcule
globally to your system.
npm install microcule -g
This will allow you to run the microcule
command for any local services you write.