@roxi/ssr
v0.2.1
Published
JSDOM SSR renderer for Svelte
Downloads
12,939
Readme
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