dominject

Inject scripts and styles into the DOM with duplicate prevention and completion callback support

Usage no npm install needed!

<script type="module">
  import dominject from 'https://cdn.skypack.dev/dominject';
</script>

README

DOM Inject

Status of the GitHub Workflow: bevry NPM version NPM downloads Dependency Status Dev Dependency Status
GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Inject scripts and styles into the DOM with duplicate prevention and completion callback support

Usage

Complete API Documentation.

var dominject = require('dominject')
var element = dominject({
    type: 'script',
    url: '//some-url.js',
    attrs: {}, // attributes to be added to the injected dom element
    timeout: 60 * 1000, // defaults to one minute that is allowed before the injection times out
    next: function (err, el) {
        // completion callback for once the element has completed or error'd
    },
}) // returns the element that was injected

Install

npm

  • Install: npm install --save dominject
  • Import: import pkg from ('dominject')
  • Require: const pkg = require('dominject').default

Skypack

<script type="module">
    import pkg from '//cdn.skypack.dev/dominject@^4.22.0'
</script>

unpkg

<script type="module">
    import pkg from '//unpkg.com/dominject@^4.22.0'
</script>

jspm

<script type="module">
    import pkg from '//dev.jspm.io/dominject@4.22.0'
</script>

Editions

This package is published with the following editions:

  • dominject/source/index.js is ESNext source code for Node.js 12 || 14 || 16 with Import for modules
  • dominject/edition-browsers/index.js is ESNext compiled for web browsers with Import for modules
  • dominject aliases dominject/edition-node-16/index.js
  • dominject/edition-node-16/index.js is ESNext compiled for Node.js 16 with Require for modules

TypeScript

This project provides its type information via inline JSDoc Comments. To make use of this in TypeScript, set your maxNodeModuleJsDepth compiler option to 5 or thereabouts. You can accomlish this via your tsconfig.json file like so:

{
  "compilerOptions": {
    "maxNodeModuleJsDepth": 5
  }
}

History

Discover the release history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

These amazing people have contributed finances to this project:

Become a sponsor!

GitHub Sponsors donate button Patreon donate button Flattr donate button Liberapay donate button Buy Me A Coffee donate button Open Collective donate button crypto donate button PayPal donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

License

Unless stated otherwise all works are:

and licensed under: