A very simple todo widget written to demonstrate micro services use.
This repo has static`` html/css/js app,
apiapplication which returns todo tasks and
entity-accessapplication that emulates db access to return tasks to the
api` application.
Make sure you have Node.js installed.
git clone [email protected]:adylevy/node-todo-micro-service.git # or clone your own fork
cd node-todo-micro-service
npm install
npm start
Your app should now be running on localhost:8080.
The API
app is accessed via localhost:7070
and the Entity-Access
app is accessed via localhost:6060