microcule-examples
v6.0.0
Published
Open-source collection of example HTTP Microservices in many programming languages
Downloads
150
Readme
microcule-examples
Open-source collection of example HTTP Microservices in multiple programming languages
Running examples locally
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.
Installing microcule
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.