-
Just following the guide http://senecajs.org/getting-started/ and various things not working (Windows 10; NodeJS v11):
1. `node math-tree.js --seneca.print.tree` prints gobbledegook but no tree:
`…
-
cluster as default plugin is true but I don't see process fork for this.
internals.cluster function never gets called.
var seneca = require('seneca')()
seneca.ready(function () {
seneca.use…
-
I cant run any exercises from graphic interface with command ` seneca-in-practice` or from command line with `seneca-in-practice select Sum`.
` /usr/local/lib/node_modules/seneca-in-practice/prob…
Cbenh updated
8 years ago
-
All references to github repos should be removed and the github repos referenced need to be published to npm.
The direct repos we're using are:
```
"git://github.com/sigismondm/seneca-elasticsearc…
-
My config:
```
var Seneca = require('seneca')
Seneca({tag: 'hex', log: 'silent'})
.use('mesh', {
monitor: true
})
```
> error:
>
> throw new Error('[DEATH LOOP]')
> …
vforv updated
6 years ago
-
npm i seneca
"seneca": "^3.23.3"
Scene: when using multiple
divided seneca ( connected different business) in a project
[1]
file: [src.zip](https://github.com/senecajs/seneca/files/6999…
-
`seneca.fail` is used with the deprecated syntax `seneca.fail(...,callback)` e.g. [L230-L236](https://github.com/rjrodger/seneca-perm/blob/master/perm.js#L230-L236)
devDependencies includes seneca@0.…
-
Hi guys,
Pins don’t seem to work.
server-a.js:
```
require('seneca')()
.use('redis-transport')
.add('role:a, cmd:sayMyName', (args, next) => {
console.log('---> a');
…
-
One of the nice features of seneca is being able to wire the app together without changing the plugins.
This is what test-app.js is demonstrating, the entire app can be run in a single process and the…
-
Hi.
So... I have read the Tao of Microservices. I have watched the various presentations. I have implemented some of the examples from the Seneca Getting Started page in the browser using this seneca…