quark

1.0.1 • Public • Published

quark

a mini framework for micro-service in node.js

npm version

Installation

$ npm install quark

Features

  • Simple definition of actions for patterns.
  • Fast and minimalist.
  • Transports will resolve message sending to other services.

Quick start

$ npm install quark

Example of a ping-pong app:

var quark = require('quark')();
 
quark.define({
  action: 'ping'
}, function(args, done) {
  done(null, { yeld: 'pong' });
});
 
quark.listen(function(err, addr) {
  if (err) throw err;
 
  console.log('quark %s is running on %s:%s', 'ping.pong', addr.address, addr.port);
});

Sending messages:

$ curl -d "http://localhost:3000/exec" '{"action" : "ping"}'
 
# output => { "yeld": "pong" } 

Examples

To view the examples, clone the quark repository and install the dependencies.

$ git clone git@github.com:robert52/quark.git
cd quark
$ npm install

To run an example us the following command:

$ node examples/ping.pong.js

Test

To run tests, simply run the following command:

$ npm test

When to use quark

  • When you want to separate your monolithic application into small services.
  • When you don't care who provides the functionality only the output of an action.
  • When you don't know where the actual implementation lives (network, local).

We can communicate with each other through different channels, be it a simple conversation or in a chat room on the internet, the core message will get to the other person.

License

MIT

Package Sidebar

Install

npm i quark

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • robert52