Browserify inline script tags in HTML.
We have a index.html
page with:
<!doctype html>
<html lang="en">
<body>
<script type="text/browserify">
var radical = require('./rad.js')
radical('go!')
</script>
</body>
</html>
Then as we serve the HTML we can transform it:
var scriptify = require('scriptify')
// Bundle an HTML file
fs.createReadStream('index.html')
.pipe(scriptify())
.pipe(fs.createWriteStream('bundle.html'))
// Or bundle as the server requests it:
var http = require('http')
var fs = require('fs')
http.createServer(function(req, res) {
if (req.url !== '/') return res.end('')
res.writeHead(200, {'Content-Type': 'text/html'})
fs.createReadStream('index.html').pipe(scriptify()).pipe(res)
}).listen(8080)
console.log('Server running at http://localhost:8080/')
Returns a Stream
.
options
:selector
: Defaults toscript[type="text/browserify"]
.args
: Defaults to[]
. Arguments to pass tobrowserify
.
I don't know. Probably not. I'm just being lazy and sometimes don't want to have a separate file for an entry point.
With npm do:
npm install scriptify
- 0.1.0 - initial release
Copyright (c) 2013 Kyle Robinson Young
Licensed under the MIT license.