Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dashersw/cote-workshop
Microservices case study with cote.js
https://github.com/dashersw/cote-workshop
microservices nodejs zero-configuration
Last synced: about 11 hours ago
JSON representation
Microservices case study with cote.js
- Host: GitHub
- URL: https://github.com/dashersw/cote-workshop
- Owner: dashersw
- License: mit
- Created: 2015-03-25T13:29:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-04-14T11:04:27.000Z (over 2 years ago)
- Last Synced: 2025-01-01T18:11:54.357Z (8 days ago)
- Topics: microservices, nodejs, zero-configuration
- Language: JavaScript
- Homepage: http://github.com/dashersw/cote
- Size: 125 KB
- Stars: 255
- Watchers: 13
- Forks: 62
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microservices case study with cote.js
This project aims to show a microservices architecture built with [cote.js](https://github.com/dashersw/cote), an auto-discovery mesh network framework for building fault-tolerant and scalable applications.
It's an example e-commerce application with a complete feature set from admin interface to end user interface, and 4 different microservices for dealing with payments, products, purchases and user management.
The admin interface is implemented on a REST server to demonstrate how cote.js would work within an existing express-based application. Product, user and purchase management is done via REST calls to the admin server, where they are then forwarded to respective microservices.
The client interface is implemented entirely in cote; the server only serves a single index.html. It's a breakthrough implementation, which basically means you can host your website statically (on for example, S3), and have all the benefits of a server and the microservices architecture.
## Installation
Run the following commands:
```
git clone https://github.com/dashersw/cote-workshop
cd cote-workshop
npm install
node init-db.js
```## Getting the system up and running
There are four backend services, an admin interface and an end-user interface.
### Quickstart
For the quickest start, have [PM2](http://pm2.keymetrics.io) installed globally and then just type:
```
pm2 start cote-workshop.json
```This will run all the 6 services you need, and you can monitor your services with `pm2 monit` or use any pm2 commands at your disposal.
Admin interface will be available in [http://localhost:5000](http://localhost:5000)
End user interface will be available in [http://localhost:5001](http://localhost:5001)
Monitoring will be available in [http://localhost:5555](http://localhost:5555)
Navigate to the admin and (multiple) end user interfaces and add / delete / buy some products to see everything updating in real time!
### Manual start
Run the admin interface:
```
node admin/server
```Admin interface will be available in [http://localhost:5000](http://localhost:5000)
Run the end user interface in a separate terminal window (or tab):
```
node end-user/server
```End user interface will be available in [http://localhost:5001](http://localhost:5001)
Now run the services in separate terminal windows (or tabs):
```
node services/payment-service
node services/product-service
node services/purchase-service
node services/user-service
```Navigate to the admin and (multiple) end user interfaces and add / delete / buy some products to see everything updating in real time!
## Monitoring
There's a built-in monitor service which lets you visualize the connections between microservices. The monitoring service is automatically started via pm2, or if you want to manually start it, run:
```
node monitor.js
```It's a simple monitoring GUI, and will be available in [http://localhost:5555](http://localhost:5555)
## Running locally with host names
This repo includes a proxy service which binds on port 80 to host the application via certain host names.
The proxy supports these virtual hosts;
`http://local-admin.cotejs.org` for the admin interface and redirects requests to `localhost:5000`.
`http://local-end-user.cotejs.org` for the end user interface and redirects requests to `localhost:5001`.
`http://local-monitoring.cotejs.org` for the monitoring interface and redirects requests to `localhost:5555`.
Then you have to modify your `/etc/hosts` file to include `127.0.0.1 local-admin.cotejs.org local-end-user.cotejs.org local-monitoring.cotejs.org`. Now when you visit either of these addresses in your browser, you will be redirected to the respective service.
## Docker installation
This repository includes a full-featured `docker-compose.yml` to start all the necessary services including a PostgreSQL database via Docker.
Run the following to launch all services;
```
docker-compose up
```This will build necessary local images and then launch a cluster of services. If you edit your `/etc/hosts` file to accomodate the given domain names, you can interact with the application via your browser.