Streamed ES6 template literal function
npm install node-stream-string
node-stream-string
==========
Streamed ES6 template literal function.
Written for using renderToNodeStream React SSR function with ES6 template literals.
npm i --save node-stream-string
``javascript
const streamString = require('node-stream-string')
// ...
app.get("/", (req, res) => {
const stream = streamString
stream.pipe(res)
})
``MIT