Files
buuh/examples/counter/render.js
T

6 lines
197 B
JavaScript
Raw Normal View History

// Server-side render of the exact same app module the browser mounts:
// node examples/counter/render.js
import createApp from './app.js'
process.stdout.write(createApp().toString('/') + '\n')