Socket
Socket
Sign inDemoInstall

choo-async

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

choo-async

Asynchronous rendering decorator for Choo


Version published
Maintainers
1
Created
Source

choo-async

Asynchronous rendering decorator for Choo.

Usage - Install - License: MIT

stability standard

Usage

const choo = require('choo')
const async = require('choo-async')
const html = require('choo-async/html')

const app = async(choo())

app.route('/', async.catch(view, error))
app.mount('body')

async function view (state, emit) {
  const lazyView = await import('./lazyView')
  return html`
    <body>
      <h1>Hello</h1>
      ${lazyView(state, emit)}
    </body>
  `
}

function error (err) {
  return (state, emit) => html`
    <body>
      <h2>An error has occured</h2>
      <pre>${err.stack}</pre>
    </body>
  `
}

Install

npm install choo-async

License

MIT

Keywords

FAQs

Package last updated on 09 Apr 2018

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