Skip to content
This repository has been archived by the owner on Jun 20, 2019. It is now read-only.

Latest commit

 

History

History
50 lines (34 loc) · 836 Bytes

README.md

File metadata and controls

50 lines (34 loc) · 836 Bytes

fems

ABANDONED

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