
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@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
The npm package @mediamonks/assetmanager receives a total of 2 weekly downloads. As such, @mediamonks/assetmanager popularity was classified as not popular.
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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.