
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@mediamonks/assetmanager
Advanced tools
Lightweight library for loading and unloading image, video, audio and data assets
npm add @mediamonks/assetmanager
import assetManager from '@mediamonks/assetmanager';
// loading a single file
assetManager.load('https://catpics.com/cat.png');
// loading multiple files
assetManager.load(['meow.mp3', 'wavs/lol.wav']);
// loading into a namespace
assetManager.load(['data/data.json', 'videos/video.mp4'], 'main');
// loading with progress callback
assetManager.load(allTheFiles, progress => {
console.log(`${Math.floor(progress * 100)}%`);
});
// loading into a namespace with progress callback
assetManager.load(catMediaFiles, 'catMedia', progress => {
console.log(`${Math.floor(progress * 100)}%`);
});
// using an image asset
image.src = assetManager.get('https://catpics.com/cat.png'); // returns HTMLImageElement
// using a video asset
video.src = assetManager.get('videos/video.mp4'); // returns object URL
// using an audio asset
const audioContext = new AudioContext();
const source = audioContext.createBufferSource();
source.buffer = assetManager.get('meow.mp3'); // returns AudioBuffer
source.start();
// using a data asset
const data = assetManager.get('data/data.json'); // returns Object
// loading and using
const music = await assetManager.load('https://music.com/music.mp3');
// unloading a single file
assetManager.release('meow.mp3');
// unloading multiple files
assetManager.release(['meow.mp3', 'lol.wav']);
// unloading a namespace
assetManager.release('main');
// unloading everything
assetManager.release();
Note: Keep in mind that garbage collection can't actually free up the memory unless the asset is no longer referenced anywhere, so make sure you also unset any variables, properties and DOM references that point to the asset. When using a modern framework, this means that as long as you keep all your references to an asset within a component and properly scope your variables, destroying the component should take care of this.
import assetManager from '@mediamonks/assetmanager';
Vue.use(assetManager, {
root: 'assets/' // optional. specifies a root path to be prefixed to all relative paths
});
this.$assets.load(['image.png', 'data.json']);
const { value } = this.$assets.get('data.json');
this.$assets.release('data.json');
<img :src="$assets.get('images/image.png')" />
FAQs
Lightweight library for loading and unloading image, video, audio and data assets
We found that @mediamonks/assetmanager demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.