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

ABANDONED An idea for microservices on the front end [WIP]

License

Notifications You must be signed in to change notification settings

zacanger/fems

Repository files navigation

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