get-image

a simple module that creates a preloaded <img> for a given src

Usage no npm install needed!

<script type="module">
  import getImage from 'https://cdn.skypack.dev/get-image';
</script>

README

get-image

get-image is a simple module that creates a preloaded <img> for a given src.

Build status

Browser support

Install

$ npm install get-image

note: canvas is not installed alongside get-image

get-image requires automattic/node-canvas for its server/node variant, however, to avoid browser-only users from having to endure the native compilation process, it needs to be npm installed separately.

Usage

Browser & Server

var image = require('get-image')

image('./image.jpg', function(error, img) {
  document.body.appendChild(img)
})

License

MIT