Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@podium/layout

Package Overview
Dependencies
Maintainers
3
Versions
252
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@podium/layout

Module for composing full page layouts out of page fragments in a micro frontend architecture.

  • 3.0.0-beta.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
589
decreased by-8.96%
Maintainers
3
Weekly downloads
 
Created
Source

@podium/layout

Module for composing full page layouts out of page fragments in a micro frontend architecture.

Build Status Greenkeeper badge Known Vulnerabilities

Module for building a Layout server. A Layout server is mainly responsible for fetching HTML content from podlets and stitching these fragments into an full HTML page (called a layout in Podium speak).

To do this, a Layout instance provides three core features:

  • @podium/client used to fetch content from podlets
  • @podium/context used to set request bound information on the requests from the layout to podlets when fetching their content
  • @podium/proxy makes it possible to publicly expose data endpoints in a podlet or in any backend service

A Layout can be used together with any connect middleware compatible HTTP framework (eg. Express.js) and any templating language of your choosing (or none if you prefer).

Installation

$ npm install @podium/layout

Simple usage

Build a simple Layout server with a single podlet using Express js

const express = require('express');
const Layout = require('@podium/layout');

const layout = new Layout({
    name: 'myLayout',
    pathname: '/',
});

const podlet = layout.client.register({
    name: 'myPodlet',
    uri: 'http://localhost:7100/manifest.json',
});

const app = express();
app.use(layout.middleware());

app.get('/', (req, res, next) => {
    const ctx = res.locals.podium.context;
    Promise.all([podlet.fetch(ctx)]).then(result => {
        res.status(200).send(`
                <html><body>
                    <section>${result[0]}</section>
                </body></html>
            `);
    });
});

app.listen(7000);

Constructor

Create a new Layout instance.

const layout = new Layout(options);

options

optiondefaulttyperequireddetails
namenullstringtrueName that the layout identifies itself by
pathnamenullstringtruePathname of where a Layout is mounted in a http server
loggernullobjectfalseA logger which conform to a log4j interface
contextnullobjectfalseOptions to be passed on to the internal @podium/context constructor
clientnullobjectfalseOptions to be passed on to the internal @podium/client constructor
proxynullobjectfalseOptions to be passed on to the internal @podium/proxy constructor
name

Name that the layout identifies itself by. The name value must be in camelCase.

Example:

const layout = new Layout({
    name: 'myLayoutName',
    pathname: '/foo',
});
pathname

The Pathname of where the Layout is mounted into the HTTP server. It is important that this value matches where the entry point of a route is in the HTTP server since this value is used to mount the proxy and tell podlets (through the context) where they are mounted and where the proxy is mounted.

If the layout is mounted at the server "root", set pathname to /:

const app = express();
const layout = new Layout({
    name: 'myLayout',
    pathname: '/',
});

app.use(layout.middleware());

app.get('/', (req, res, next) => {
    [ ... ]
});

If the layout is mouned at /foo, set pathname to /foo and mount middleware and routes at or under /foo

const app = express();
const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo',
});

app.use('/foo', layout.middleware());

app.get('/foo', (req, res, next) => {
    [ ... ]
});

app.get('/foo/:id', (req, res, next) => {
    [ ... ]
});

There is also a helper method for retrieving the set pathname which can be used to get the pathname from the Layout object when defining routes. See .pathname() for further details.

logger

Any log4j compatible logger can be passed in and will be used for logging. Console is also supported for easy test / development.

Example:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo',
    logger: console,
});

Under the hood abslog is used to abstract out logging. Please see abslog for further details.

context

Options to be passed on to the internal @podium/context constructor.

Please see the @podium/context constructor for which options can be set.

Example of setting the debug context to default true:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo',
    context: {
        debug: {
            enabled: true,
        },
    },
});
client

Options to be passed on to the internal @podium/client constructor.

Please see @podium/client constructor for which options which can be set.

Example of setting the retries on the client to 6:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo',
    client: {
        retries: 6,
    },
});
proxy

Options to be passed on to the internal @podium/proxy constructor.

Please see @podium/proxy constructor for which options which can be set.

Example of setting the timeout on the proxy to 30 seconds:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo',
    proxy: {
        timeout: 30000,
    },
});

API

The Layout instance has the following API:

.middleware()

A connect compatible middleware which takes care of multiple operations needed for a Layout to fully work.

What it does:

  • Runs context parsers on incomming requests and creates an object on the response at res.locals.podium.context which can be passed on to the client when requesting content from podlets.
  • Mounts the proxy so that each podlet can do transparent proxy requests if needed.

This middleware should be mounted before defining any routes.

Example

const app = express();
app.use(layout.middleware());

Returns an Array of internal middleware performing the tasks described above.

.pathname()

A helper method to retrieve the pathname set on the constructor. This can be handy to use in defining routes since the pathname set in the constructor must match whatever is defined as root in each route in a HTTP router.

Example:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/foo'
});

app.get(layout.pathname(), (req, res, next) => {
    [ ... ]
});

app.get(`${layout.pathname()}/bar`, (req, res, next) => {
    [ ... ]
});

app.get(`${layout.pathname()}/bar/:id`, (req, res, next) => {
    [ ... ]
});

.client

A property that exposes an instance of the @podium/client for fetching content from podlets.

Example of registering a podlet and fetching it:

const layout = new Layout({
    name: 'myLayout',
    pathname: '/',
});

const podlet = layout.client.register({
    name: 'myPodlet',
    uri: 'http://localhost:7100/manifest.json',
});

podlet.fetch({}).then(result => {
    console.log(result);
});

Please see the @podium/client module for full documentation.

.context

A property that exposes an instance of the @podium/context used to create a context.

Example of registering a custom third party context parser to the context:

const Parser = require('my-custom-parser');

const layout = new Layout({
    name: 'myLayout',
    pathname: '/',
});

layout.context.register('customParser', new Parser('someConfig'));

Please see the @podium/context module for full documentation.

.metrics

Property that exposes a metric stream. This stream joins all internal metrics streams into one stream resulting in all metrics from all sub modules being exposed here.

Please see the @podium/metrics module for full documentation.

Keywords

FAQs

Package last updated on 28 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc