JSPM

  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q50855F
  • License BSD-2-Clause

A crazy webworker framework

Package Exports

  • fritz

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (fritz) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

fritz

A really weird web worker framework.

import fritz from 'fritz';
import Layout from './Layout.js';

const app = fritz();

app.get('/', function(req, res){
  res.push(
    <Layout>
      <h1>Hello world!</h1>
    </Layout>
  )
});