Front End Micro Services [WIP]


Keywords
fed, fems, microservice, microservices, web, front-end, frontend
License
MIT
Install
npm install fems@1.3.0

Documentation

fems

Front End Micro Services [WIP]


Installation

npm i fems

Usage

import f from 'fems'

f('/manifest.json')

Or

<script type="module" src="https://unpkg.com/fems"></script>
<script type="javascript">
  window.__fems('/manifest.json')
</script>

The argument passed should be the URL of a piece of JSON with a list of other urls to dynamically import. Your modules should export a run named function, which could attach apps to DOM nodes, or whatever.

export const run = () => {
  ReactDOM.render(
    <App />
    document.getElementById('app-root')
  ) 
}

Important

This module doesn't really work yet. It's based on ES Modules and dynamic import, and uses shimport.

License

MIT