0.2.1 • Published 4 years ago

@roxi/ssr v0.2.1

Weekly downloads
900
License
ISC
Repository
github
Last release
4 years ago

ssr

Universal SSR renderer

Install

npm i @sveltech/ssr

Usage example

const { ssr } require('@sveltech/ssr')
const fs = require('fs')

const template = fs.readFileSync('./dist/index.html')
const script = fs.readFileSync('./dist/app.js')

ssr(template, script, '/blog/ssr-is-fun')
  .then(html => console.log(html + '<!--ssr rendered-->'))

Important!

The HTML is only rendered after an app-loaded event has been emitted from the app.

dispatchEvent(new CustomEvent('app-loaded'))

For more information, refer to the API documentation. https://github.com/sveltech/ssr/wiki/API

0.2.1

4 years ago

0.2.0

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago