seneca-echo
v0.3.0
Published
Seneca echo plugin.
Downloads
36
Readme
seneca-echo - a Seneca plugin
Seneca echo plugin.
This Seneca plugin provides a simple echo service. It is used as a test case and provides a simple example of a plugin. Cut and paste to create your own plugins!
For a gentle introduction to Seneca itself, see the senecajs.org site.
Support
Current Version: 0.3.0
Tested on: Seneca 0.6.2
If you're using this module, and need help, you can:
- Post a github issue,
- Tweet to @senecajs,
- Ask on the
.
Install
npm install seneca-echo
Quick example
require('seneca')()
.use('echo') // the seneca- prefix is optional
.act('role:echo,foo:bar', function(err,out) {
console.log(out.foo) // prints bar
})
Development & Test
To test, use:
npm test