Preload images for use in games, animations, etc.
npm install --save load-images
var loadImages = require('load-images');
var loaded;
loadImages(arrayOfImagePaths, function(err, images){
if (err) throw err;
loaded = images;
// start game or animation
});
The images argument is an object where each key is the filename of the image and the value is the img object.
Take a look at the crtrdg.js project at crtrdg.com as well as the game-modules wiki.
MIT