
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
This is a js-canvas driven atmospheric visualization with interaction.

https://renmuell.github.io/rm_atmo/
Choose and copy one build script from /dist/ folder:
Include on your website:
<script src=".../dist/rm_atmo.min.js"></script>
This will attach everything to the Body and run.
rM_AtMo.create();
If you want to control the root element or loop an backgroung song, the create-method also accepts options:
<div class="background"></div>
var rm = rM_AtMo.create({
domElement: document.getElementsByClassName("background")[0],
songSrc: 'www.some.url.com/path/to/song.mp3'
});
Attach and create new rM_AtMo instance.
new rm_AtMo instance
var rm = rM_AtMo.create({
domElement: document.getElementsByClassName("background")[0]
});
Attach eventhandler for user touch event. The eventhandler will get the position of in percentage to the root element (x and y).
nothing
var rm = rM_AtMo.create();
rm.onTap(function (data) {
console.log('Position X Percent:', data.x);
console.log('Position Y Percent:', data.y);
});
$ npm install browserify -g
$ npm install uglify-es -g
$ npm install
This will:
$ npm run build
FAQs
background atmosphere interaction
The npm package rm_atmo receives a total of 6 weekly downloads. As such, rm_atmo popularity was classified as not popular.
We found that rm_atmo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.