get-image
v2.0.0
Published
a simple module that creates a preloaded <img> for a given src
Downloads
2,801
Readme
get-image
get-image is a simple module that creates a preloaded <img>
for a given src.
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)
})