
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
🌿 Modern, lightweight Vue 3 Carousel powered by CSS Scroll Snap.
The idea behind this plugin is to create a fully responsive and well-optimized carousel. We’ve used modern CSS features like Scroll Snapping, which allows the carousel wrapper to lock onto specific slides or positions after the user finishes scrolling. This approach helps us minimize the library size by including only the essential parts, and it avoids heavy JavaScript computations or CSS hacks.
📕 Example
Lightweight – up to 5–10× smaller than other libraries
No calculations or heavy logic – performance-first approach
Fully responsive – most customization is handled via CSS (e.g. number of visible slides)
ESM bundle with tree-shaking – dead code is automatically eliminated
SSR support – works with frameworks like Nuxt.js 🎉 More here
Vue 3 support 🎉 More here
Modern browser support – compatible with all common browsers More here
pnpm add vue-snap
yarn add vue-snap
npm install vue-snap
import { createApp } from 'vue'
import App from './App.vue'
import VueSnap from 'vue-snap'
import 'vue-snap/dist/vue-snap.css'
const myApp = createApp(App)
myApp.use(VueSnap)
myApp.mount('#app')
import { Carousel, Slide } from 'vue-snap'
import 'vue-snap/dist/vue-snap.css'
export default {
components: {
Carousel,
Slide
}
}
Check out examples folder for more details or documentation
If you have a feature request then feel free to start a new issue, or just grab existing one.
MIT
FAQs
Lightweight Carousel based on CSS Scroll Snap
The npm package vue-snap receives a total of 880 weekly downloads. As such, vue-snap popularity was classified as not popular.
We found that vue-snap 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.