microservice-examples
v4.1.0
Published
Open-source collection of example HTTP Microservices in many programming languages
Downloads
10
Readme
microservice-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/microservice-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 the Stack Tool
You might also find it useful to install stack
globally to your system.
npm install microcule -g
This will allow you to run the stack
command for any local services you write.