@geut/moleculer-browser
v0.0.11
Published
Moleculer for the browser.
Downloads
83
Readme
moleculer-browser
Moleculer for the browser.
moleculer-browser is a wrapper on top of Moleculer.
Most of the 90% of the Moleculer's codebase is platform agnostic.
Using rollup we replaced the specific code for Node.js with shims to simulate the original behaviour.
Install
$ npm install @geut/moleculer-browser
Usage
const { ServiceBroker } = require('@geut/moleculer-browser')
const broker = new ServiceBroker({
transporter: { type: 'fake' },
serializer: 'Json',
logger: console
})
broker.createService({
name: 'math',
actions: {
add (ctx) {
return Number(ctx.params.a) + Number(ctx.params.b)
}
}
})
broker.start()
// Call service
.then(() => broker.call('math.add', { a: 5, b: 3 }))
.then(res => console.log('5 + 3 =', res))
.catch(err => console.error(`Error occured! ${err.message}`))
Playground
Glitch
Codesandbox
Why
When we talk about services we think at some point in a process running in some environment. Well, the browser is a process too.
What if the browser could provide a service itself through a network on top of WebSockets or WebRTC?
That's what we want to show here.
Issues
:bug: If you found an issue we encourage you to report it on github. Please specify your OS and the actions to reproduce it.
Contributing
:busts_in_silhouette: Ideas and contributions to the project are welcome. You must follow this guideline.
License
MIT © A GEUT project