项目作者: geut

项目描述 :
Moleculer for the browser.
高级语言: JavaScript
项目地址: git://github.com/geut/moleculer-browser.git
创建时间: 2019-07-23T22:00:56Z
项目社区:https://github.com/geut/moleculer-browser

开源协议:MIT License

下载


moleculer-browser

Build Status
JavaScript Style Guide
standard-readme compliant
stability-experimental

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" class="reference-link"> Install

  1. $ npm install @geut/moleculer-browser

Usage" class="reference-link"> Usage

  1. const { ServiceBroker } = require('@geut/moleculer-browser')
  2. const broker = new ServiceBroker({
  3. transporter: { type: 'fake' },
  4. serializer: 'Json',
  5. logger: console
  6. })
  7. broker.createService({
  8. name: 'math',
  9. actions: {
  10. add (ctx) {
  11. return Number(ctx.params.a) + Number(ctx.params.b)
  12. }
  13. }
  14. })
  15. broker.start()
  16. // Call service
  17. .then(() => broker.call('math.add', { a: 5, b: 3 }))
  18. .then(res => console.log('5 + 3 =', res))
  19. .catch(err => console.error(`Error occured! ${err.message}`))

Playground" class="reference-link"> Playground

Glitch


view source


remix this

Codesandbox

Edit moleculer-browser

Why" class="reference-link"> 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" class="reference-link"> 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" class="reference-link"> Contributing

:busts_in_silhouette: Ideas and contributions to the project are welcome. You must follow this guideline.

License

MIT © A GEUT project