Skip to content

Instantly share code, notes, and snippets.

View bjerkek's full-sized avatar
👋

Jens-Christian Bjerkek bjerkek

👋
View GitHub Profile
@bjerkek
bjerkek / loans-layout-1.js
Last active May 4, 2021 12:17
Learning Podium - Loans Layout - 1
const express = require('express');
const Layout = require('@podium/layout');
const app = express();
const domain = 'http://localhost';
const port = '7000';
const url = `${domain}:${port}`;
const layout = new Layout({
@bjerkek
bjerkek / header-podlet-1.js
Last active May 4, 2021 12:18
Learning Podium - Header podlet - 1
const express = require('express');
const Podlet = require('@podium/podlet');
const app = express();
const domain = 'http://localhost';
const port = '7100';
const url = `${domain}:${port}`;
const podlet = new Podlet({