
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.
magic-snowflakes
Advanced tools
npm i magic-snowflakes --save-dev
Paste anywhere in your page's HTML:
<script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.auto.min.js"></script>
<html>
<body>
...
<script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script>
<script>
new Snowflakes({
wind: false,
rotation: false
});
</script>
</body>
</html>
<html>
<head>
<style>
#snowflakes-container {
width: 500px;
height: 500px;
position: relative;
overflow: hidden;
}
</style>
</head>
<body>
<div id="snowflakes-container"></div>
<script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script>
<script>
var snowflakes = new Snowflakes({
color: '#f00', // Default: "#5ECDEF"
container: document.querySelector('#snowflakes-container'), // Default: document.body
count: 100, // 100 snowflakes. Default: 50
minOpacity: 0.1, // From 0 to 1. Default: 0.6
maxOpacity: 0.95, // From 0 to 1. Default: 1
minSize: 20, // Default: 10
maxSize: 50, // Default: 25
rotation: true, // Default: true
speed: 2, // The property affects the speed of falling. Default: 1
wind: false, // Without wind. Default: true
width: 500, // Default: width of container
height: 250, // Default: height of container
zIndex: 100, // Default: 9999,
autoResize: true // Default: true
});
</script>
</body>
</html>
import Snowflakes from 'magic-snowflakes';
const snowflakes = new Snowflakes();
// ...
snowflakes.stop();
// ...
snowflakes.start();
// ...
snowflakes.destroy();
import Snowflakes from 'magic-snowflakes';
const snowflakes = new Snowflakes();
Start CSS Animation.
Stop CSS Animation.
Show snowflakes.
Hide snowflakes.
Resize snowflakes.
Destroy the instance of snowflakes.
In the dist/ directory of the NPM package you will find many different builds of snowflakes.js.
| Type | Filename | Description |
|---|---|---|
| Full (UMD) | snowflakes.js | |
| Full (UMD, production) | snowflakes.min.js | |
| Full auto | snowflakes.auto.js | Without API |
| Full auto (production) | snowflakes.auto.min.js | Without API |
| ES6 or Typescript | snowflakes.esm.js | |
| Light (UMD) | snowflakes.light.js | Without SVG images |
| Light (UMD, production) | snowflakes.light.min.js | Without SVG images |
git clone git@github.com:hcodes/snowflakes.git ./snowflakes
cd ./snowflakes
npm i
npm run build
npm test
open ./examples/
MIT License
FAQs
Falling snowflakes
The npm package magic-snowflakes receives a total of 2,913 weekly downloads. As such, magic-snowflakes popularity was classified as popular.
We found that magic-snowflakes demonstrated a healthy version release cadence and project activity because the last version was released less than 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.