script-injector
- provides a through stream that allows you to inject inline javascript into an html text stream.
- Uses
trumpet
to parse your html. - Should only be used for good, never for evil
Installation
npm install script-injector
How to use
Just pipe a stream of html through script-injector. You can pass in either some stringified code or a function object. What could be easier?
scriptInjector = ; // Then do something like this somewhere else fs ;
script-injector
will insert the provided code before your first script tags, or just before </body>
if you don't have any other scripts.