JSPM

html-inject-script

2.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 4013
    • Score
      100M100P100Q124340F
    • License ISC

    Package Exports

    • html-inject-script

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (html-inject-script) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    html-inject-script

    Transform stream for injecting script tags into html.

    example:

    var injectScripts = require('html-inject-script')
    
    process.stdin
    .pipe( injectScripts(['./app.js', './extra.js']) )
    .pipe( process.stdout )

    input:

    <html><head></head><body>hello</body></html>

    output:

    <html><head><script src="./app.js"></script><script src="./extra.js"></script></head><body>hello</body></html>

    api

    require('html-inject-script')(scripts[, opts])

    Injects an array of scripts. Accepts an object of options:

    • selector (string, default: 'head'): A hyperstream selector into which the tags are injected
    • prepend (boolean, default: true): If true, prepends. If false, appends.

    cli

    cat index.html | htmlinjectscript "app.js" > output.html
    usage: cat index.html | htmlinjectscript "app.js" > output.html
    
    Options:
    
          --body  -b,  inject into the body element (default: head)
    
       --selector -s,  override head or body with a specific selector
    
         --append -a,  append to selector instead (default: prepend)
    
              --help,  -h  display this message

    Gotcha:

    requires the tag (head, body, or otherwise) to be present in the src.