
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Stacking scrolling navigation, modern alternative to Slinky.js without no dependencies
Create beautiful scrolling driven navigation lists with stacking headers that remain visible at all times.
Vanilla JS alternative to Slinky.js with no dependencies.
You can see demo here: https://matronator.github.io/stacky.js/
Instal with
npm install stacky.js
and import into your project
import Stacky from "stacky.js"
Download files from the dist folder and include in your HTML file
<script src="path/to/stacky.min.js"></script>
A minimal HTML structure for Stacky to work with can look something like this:
<main>
<nav>
<section>
<header>First header</header>
<p>Some content</p>
</section>
<section>
<header>Second header</header>
<ul>
<li>First item</li>
<li>Second item</li>
</ul>
</section>
<!-- More sections here -->
</nav>
</main>
Then you just initialize Stacky like this:
const stacky = new Stacky()
stacky.init()
Stacky.js looks for <header>
tags by default, but you can change it to any CSS selector you want.
For example if you want to use Stacky on headings with some custom class like this one:
<h2 class="stack-me">Heading</h2>
You just have to specify the selector when declaring Stacky like so:
const stacky = new Stacky('h2.stack-me')
stacky.init()
Original jQuery plugin: Slinky.js
FAQs
Stacking scrolling navigation, modern alternative to Slinky.js without no dependencies
The npm package stacky.js receives a total of 1 weekly downloads. As such, stacky.js popularity was classified as not popular.
We found that stacky.js 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
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.