Richard Rodger
Richard Rodger
+1 this is very useful for the use-case where you have code that runs in Node.js and the browser, and have to muck about with module detection - some code...
Thanks - will review and merge once I have considered the fix!
A bug - thanks! .quiet is hiding the error log also port conflicts should be fatal errors
Thanks - this is a bug! The workaround is to use `require` to load plugins: ``` .use(require('./my_plugin')) .use(require('./my_plugin2')) ``` Note however that in general it is better to only create...
then update seneca-doc to use this https://github.com/voxgig/seneca-doc/blob/master/lib/inspect.js#L34
Please also note: http://senecajs.org/contribute/principles.html - Continuity Error handling rethink != major breakage is acceptable. The challenge here is not just to rethink the error handling, but also to ensure you...
@mcollina good idea - let me get this on paper
This issue is more suited to the seneca-web-adapter-express repo. However it would useful to create a reproduction in https://github.com/senecajs/repro to help debug - thanks
@rodmaz thanks - could you submit a reproduction to https://github.com/senecajs/repro as a PR to help debug this
To debug this I would create a simple version of your service that does not use Seneca at all and see if the problem persists. Alternatively use a form of...