Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 496 Bytes

micro-frontend-notes.md

File metadata and controls

31 lines (26 loc) · 496 Bytes

micro-frontend design notes

/_/service/{svc}/{feature}
/_/service/{svc}/{feature}/manifest.json
// /_/service/{svc}/{feature}/manifest.json
{
  "name": "feature",
  "version": "1fc3...350f",
  "content": "/path/to/content", // HTML
  "css": {
    "asset.id": "/{svc}/static/4833a.css"
  },
  "js": {
    "asset.id": "/{svc}/static/a346c.js"
  }
}
curl "${svc}/path/to/content"

HTTP/1.1 200 OK
Content-Type: text/html
Upstream-Version: 1fc3...350f

<html>...