npm install seneca-echoThis 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.
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 .
``sh`
npm install seneca-echo
``
require('seneca')()
.use('echo') // the seneca- prefix is optional
.act('role:echo,foo:bar', function(err,out) {
console.log(out.foo) // prints bar
})
To test, use:
`sh``
npm test