injector_js
v0.1.1
Published
inject content into your dom - via connect middleware
Downloads
4
Readme
Injector
Inject content into your server responses
Why?
There are times when all you want to do is inject a JS file or custom markup into the req res cycle without forcing the content generator to include custom markup on their side.
This is where injector comes in. Just specify the regex insertion point and content. Then you are good to go.
Installing
npm install injector_js
How to
app.use require('injector_js')(
content: "<h2> injected content! </h2>"
injectAt: '/<\/html>/'
)