• Stars
    star
    3,952
  • Rank 11,051 (Top 0.3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created about 14 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A microservices toolkit for Node.js.

Logo

A Node.js toolkit for Microservice architectures

Voxgig This open source module is sponsored and supported by Voxgig.

seneca

Npm NpmFigs Travis Coveralls DeepScan CodeClimate Gitter

Seneca is a toolkit for writing microservices and organizing the business logic of your app. You can break down your app into "stuff that happens", rather than focusing on data models or managing dependencies.

Seneca provides,

  • pattern matching: a wonderfully flexible way to handle business requirements

  • transport independence: how messages get to the right server is not something you should have to worry about

  • maturity: 8 years in production (before we called it microservices), but was once taken out by lightning

  • plus: a deep and wide ecosystem of plugins

  • book: a guide to designing microservice architectures: taomicro

Use this module to define commands that work by taking in some JSON, and, optionally, returning some JSON. The command to run is selected by pattern-matching on the the input JSON. There are built-in and optional sets of commands that help you build Minimum Viable Products: data storage, user management, distributed logic, caching, logging, etc. And you can define your own product by breaking it into a set of commands - "stuff that happens". That's pretty much it.

If you're using this module, and need help, you can:

If you are new to Seneca in general, please take a look at senecajs.org. We have everything from tutorials to sample apps to help get you up and running quickly.

Seneca's source can be read in an annotated fashion by running npm run annotate. An annotated version of each file will be generated in ./docs/.

Install

To install via npm,

npm install seneca

Quick Example

'use strict'

var Seneca = require('seneca')


// Functionality in seneca is composed into simple
// plugins that can be loaded into seneca instances.


function rejector () {
  this.add('cmd:run', (msg, done) => {
    return done(null, {tag: 'rejector'})
  })
}

function approver () {
  this.add('cmd:run', (msg, done) => {
    return done(null, {tag: 'approver'})
  })
}

function local () {
  this.add('cmd:run', function (msg, done) {
    this.prior(msg, (err, reply) => {
      return done(null, {tag: reply ? reply.tag : 'local'})
    })
  })
}


// Services can listen for messages using a variety of
// transports. In process and http are included by default.


Seneca()
  .use(approver)
  .listen({type: 'http', port: '8260', pin: 'cmd:*'})

Seneca()
  .use(rejector)
  .listen(8270)


// Load order is important, messages can be routed
// to other services or handled locally. Pins are
// basically filters over messages


function handler (err, reply) {
  console.log(err, reply)
}

Seneca()
  .use(local)
  .act('cmd:run', handler)

Seneca()
  .client({port: 8270, pin: 'cmd:run'})
  .client({port: 8260, pin: 'cmd:run'})
  .use(local)
  .act('cmd:run', handler)

Seneca()
  .client({port: 8260, pin: 'cmd:run'})
  .client({port: 8270, pin: 'cmd:run'})
  .use(local)
  .act('cmd:run', handler)


// Output
// null { tag: 'local' }
// null { tag: 'approver' }
// null { tag: 'rejector' }

Running

To run normally, say in a container, use

$ node microservice.js

(where microservice.js is a script file that uses Seneca). Logs are output in JSON format so you can send them to a logging service.

To run in test mode, with human-readable, full debug logs, use:

$ node microservice.js --seneca.test

Why we built this?

So that it doesn't matter,

  • who provides the functionality,
  • where it lives (on the network),
  • what it depends on,
  • it's easy to define blocks of functionality (plugins!).

So long as some command can handle a given JSON document, you're good.

Here's an example:

var seneca = require('seneca')()

seneca.add({cmd: 'salestax'}, function (msg, done) {
  var rate  = 0.23
  var total = msg.net * (1 + rate)
  done(null, {total: total})
})

seneca.act({cmd: 'salestax', net: 100}, function (err, result) {
  console.log(result.total)
})

In this code, whenever seneca sees the pattern {cmd:'salestax'}, it executes the function associated with this pattern, which calculates sales tax. There is nothing special about the property cmd . It is simply the property we want to pattern match. You could look for foo for all seneca cares! Yah!

The seneca.add method adds a new pattern, and the function to execute whenever that pattern occurs.

The seneca.act method accepts an object, and runs the command, if any, that matches.

Where does the sales tax rate come from? Let's try it again:

seneca.add({cmd: 'config'}, function (msg, done) {
  var config = {rate: 0.23}
  var value = config[msg.prop]
  done(null, {value: value})
})

seneca.add({cmd: 'salestax'}, function (msg, done) {
  seneca.act({cmd: 'config', prop: 'rate'}, function (err, result) {
    var rate  = parseFloat(result.value)
    var total = msg.net * (1 + rate)
    done(null, {total: total})
  })
})

seneca.act({cmd: 'salestax', net: 100}, function (err, result) {
  console.log(result.total)
})

The config command provides you with your configuration. This is cool because it doesn't matter where it gets the configuration from - hard-coded, file system, database, network service, whatever. Did you have to define an abstraction API to make this work? Nope.

There's a little but too much verbosity here, don't you think? Let's fix that:

seneca.act('cmd:salestax,net:100', function (err, result) {
  console.log(result.total)
})

Instead of providing an object, you can provide a string using an abbreviated form of JSON. In fact, you can provide both:

seneca.act('cmd:salestax', {net: 100}, function (err, result) {
  console.log(result.total)
})

This is a very convenient way of combining a pattern and parameter data.

Programmer Anarchy

The way to build Node.js systems, is to build lots of little processes. Here's a great talk explaining why you should do this: Programmer Anarchy.

Seneca makes this really easy. Let's put configuration out on the network into its own process:

seneca.add({cmd: 'config'}, function (msg, done) {
  var config = {rate: 0.23}
  var value = config[msg.prop]
  done(null, { value: value })
})

seneca.listen()

The listen method starts a web server that listens for JSON messages. When these arrive, they are submitted to the local Seneca instance, and executed as actions in the normal way. The result is then returned to the client as the response to the HTTP request. Seneca can also listen for actions via a message bus.

Your implementation of the configuration code stays the same.

The client code looks like this:

seneca.add({cmd: 'salestax'}, function (msg, done) {
  seneca.act({cmd: 'config', prop: 'rate' }, function (err, result) {
    var rate  = parseFloat(result.value)
    var total = msg.net * (1 + rate)
    done(null, { total: total })
  })
})

seneca.client()

seneca.act('cmd:salestax,net:100', function (err, result) {
  console.log(result.total)
})

On the client-side, calling seneca.client() means that Seneca will send any actions it cannot match locally out over the network. In this case, the configuration server will match the cmd:config pattern and return the configuration data.

Again, notice that your sales tax code does not change. It does not need to know where the configuration comes from, who provides it, or how.

You can do this with every command.

Keeping the Business Happy

The thing about business requirements is that they have no respect for common sense, logic or orderly structure. The real world is messy.

In our example, let's say some countries have single sales tax rate, and others have a variable rate, which depends either on locality, or product category.

Here's the code. We'll rip out the configuration code for this example.

// fixed rate
seneca.add({cmd: 'salestax'}, function (msg, done) {
  var rate  = 0.23
  var total = msg.net * (1 + rate)
  done(null, { total: total })
})


// local rates
seneca.add({cmd: 'salestax', country: 'US'}, function (msg, done) {
  var state = {
    'NY': 0.04,
    'CA': 0.0625
    // ...
  }
  var rate = state[msg.state]
  var total = msg.net * (1 + rate)
  done(null, {total: total})
})


// categories
seneca.add({ cmd: 'salestax', country: 'IE' }, function (msg, done) {
  var category = {
    'top': 0.23,
    'reduced': 0.135
    // ...
  }
  var rate = category[msg.category]
  var total = msg.net * (1 + rate)
  done(null, { total: total })
})


seneca.act('cmd:salestax,net:100,country:DE', function (err, result) {
  console.log('DE: ' + result.total)
})

seneca.act('cmd:salestax,net:100,country:US,state:NY', function (err, result) {
  console.log('US,NY: ' + result.total)
})

seneca.act('cmd:salestax,net:100,country:IE,category:reduced', function (err, result) {
  console.log('IE: ' + result.total)
})

In this case, you provide different implementations for different patterns. This lets you isolate complexity into well-defined places. It also means you can deal with special cases very easily.

Contributing

The Senecajs org encourages participation. If you feel you can help in any way, be it with bug reporting, documentation, examples, extra testing, or new features feel free to create an issue, or better yet, submit a Pull Request. For more information on contribution please see our Contributing guide.

Test

To run tests locally,

npm run test

To obtain a coverage report,

npm run coverage; open docs/coverage.html

License

Copyright (c) 2010-2018 Richard Rodger and other contributors; Licensed under MIT.

More Repositories

1

ramanujan

An example microservice system using Seneca, based on the example in Chapter 1 of The Tao of Microservices book
JavaScript
197
star
2

seneca-mesh

Mesh your Seneca.js microservices together - no more service discovery!
JavaScript
142
star
3

seneca-in-practice

Seneca.js (http://senecajs.org/) NodeSchool workshop
JavaScript
86
star
4

seneca-web

Http route mapping for Seneca microservices.
JavaScript
76
star
5

seneca-amqp-transport

Official AMQP transport plugin for Seneca
JavaScript
68
star
6

seneca-transport

Seneca micro-services message transport over TCP and HTTP.
JavaScript
63
star
7

seneca-mongo-store

Node.js Seneca data storage plugin for MongoDB
JavaScript
35
star
8

seneca-auth

A Seneca user authentication plugin for Hapi and Express
JavaScript
33
star
9

seneca-mvp

JavaScript
29
star
10

senecajs.org

Documentation site for Seneca.js
EJS
28
star
11

seneca-user

User account business logic (Seneca microservice component)
JavaScript
21
star
12

seneca-balance-client

seneca-balance-client
JavaScript
18
star
13

seneca-web-adapter-koa2

Seneca-web adapter for koa web framework (v2)
JavaScript
17
star
14

seneca-redis-pubsub-transport

Seneca micro-services message transport over Redis pubsub
JavaScript
16
star
15

seneca-entity

Entity plugin for seneca
JavaScript
13
star
16

seneca-jsonfile-store

Node.js Seneca data storage module that uses JSON files.
JavaScript
13
star
17

seneca-postgres-store

PostgreSQL plugin for Seneca
JavaScript
12
star
18

seneca-level-store

Seneca plugin for leveldb
JavaScript
12
star
19

seneca-mysql-store

MySQL database layer for Seneca framework
JavaScript
11
star
20

seneca-web-adapter-express

seneca-web adapter for express
JavaScript
11
star
21

seneca-joi

A Seneca.js plugin that validates messages using the joi module.
JavaScript
10
star
22

seneca-mail

Seneca email plugin
HTML
10
star
23

seneca-redis-queue-transport

Seneca micro-services message transport with Redis queues
JavaScript
9
star
24

seneca-repl

Seneca REPL plugin
JavaScript
6
star
25

seneca-redis-store

Redis database driver for Seneca MVP toolkit
JavaScript
6
star
26

seneca-consul-registry

seneca-consul-registry
JavaScript
5
star
27

seneca-redis-cache

HTML
5
star
28

seneca-entity-cache

seneca-vcache
JavaScript
5
star
29

gate-executor

Execute functions that return via callback in order, but pause if a function is marked as a gate.
TypeScript
5
star
30

seneca-basic

Seneca basic utility plugin.
JavaScript
4
star
31

seneca-cache

HTML
4
star
32

seneca-pino-logger

A pino logging adaptor for seneca
JavaScript
4
star
33

seneca-mem-store

Seneca in-memory data storage plugin.
JavaScript
4
star
34

seneca-store-test

Standard test cases for seneca stores.
JavaScript
4
star
35

seneca-beanstalk-transport

Seneca micro-services message transport over beanstalkd queues.
JavaScript
3
star
36

seneca-log-filter

Seneca log filter module
JavaScript
3
star
37

seneca-registry

Seneca service registry (simplistic single instance)
JavaScript
3
star
38

seneca-webflow-provider

Seneca plugin that provides access to the Webflow API.
JavaScript
3
star
39

eslint-config-seneca

Seneca lint module
JavaScript
3
star
40

seneca-logstash-logger

JavaScript
2
star
41

seneca-doc

Documentation helper for Seneca plugins.
JavaScript
2
star
42

seneca-graph

A Seneca plugin that provides basic graph operations.
JavaScript
2
star
43

seneca-web-adapter-hapi

seneca-web adapter for hapi
JavaScript
2
star
44

seneca-browser

HTML
1
star
45

seneca-nordigen-provider

Seneca provider for the nordigen API
HTML
1
star
46

seneca-maintain

Run maintenance tests for Seneca plugins.
JavaScript
1
star
47

repo-maintain

Maintenance automation for Seneca repos.
JavaScript
1
star
48

seneca-gateway-lambda

Handle incoming messages within AWS Lambdas.
TypeScript
1
star
49

seneca-vote

A voting plugin for Seneca.js
JavaScript
1
star
50

seneca-provider

Seneca plugin that provide basic functionality for accessing external service providers (third party APIs etc).
TypeScript
1
star
51

seneca-web-adapter-connect

seneca-web adapter for connect
JavaScript
1
star
52

seneca-web-adapter-koa1

Seneca-web adapter for koa web framework (v1)
JavaScript
1
star
53

SenecaWeaviateStore

Seneca framework data storage plugin for Weaviate
TypeScript
1
star
54

seneca-gateway-fastify

Handle incoming messages within fastify, defining an endpoint that accepts Seneca messages.
TypeScript
1
star
55

seneca-telemetry

Seneca telemetry plugin
TypeScript
1
star
56

seneca-parambulator

Seneca plugin that provides parambulator message validation.
JavaScript
1
star
57

seneca-flow

Workflow operations and data model
TypeScript
1
star
58

seneca-stytch-provider

Seneca plugin that provides access to the Stytch API.
TypeScript
1
star
59

seneca-refer

User Referral business logic plugin for the Seneca platform.
TypeScript
1
star
60

seneca-sqlite-store

SQLite database driver for Seneca MVP toolkit
JavaScript
1
star
61

seneca-apikey

Generate, manage, and validate API keys.
HTML
1
star