
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
nuxt-keen-slider
Advanced tools
Easy, lightweight slider or carousel creations.
Add nuxt-keen-slider
dependency to your project
# Using pnpm
pnpm add -D nuxt-keen-slider
# Using yarn
yarn add --dev nuxt-keen-slider
# Using npm
npm install --save-dev nuxt-keen-slider
Add nuxt-keen-slider
to the modules
section of nuxt.config.ts
export default defineNuxtConfig({
modules: [
'nuxt-keen-slider'
]
})
Create a component with name of your wish, ex. KeenSlider.vue
<template>
<div ref="container" class="keen-slider">
<div class="keen-slider__slide number-slide1">1</div>
<div class="keen-slider__slide number-slide2">2</div>
<div class="keen-slider__slide number-slide3">3</div>
<div class="keen-slider__slide number-slide4">4</div>
<div class="keen-slider__slide number-slide5">5</div>
<div class="keen-slider__slide number-slide6">6</div>
</div>
</template>
<script setup>
const [container, slider] = useKeenSlider({
loop: true,
mode: "free",
slides: {
perView: 3,
spacing: 15,
},
});
</script>
<style>
[class^="number-slide"],
[class*=" number-slide"] {
background: grey;
display: flex;
align-items: center;
justify-content: center;
font-size: 50px;
color: #fff;
font-weight: 500;
height: 300px;
max-height: 100vh;
}
.number-slide1 {
background: rgb(64, 175, 255);
background: linear-gradient(
128deg,
rgba(64, 175, 255, 1) 0%,
rgba(63, 97, 255, 1) 100%
);
}
.number-slide2 {
background: rgb(255, 75, 64);
background: linear-gradient(
128deg,
rgba(255, 154, 63, 1) 0%,
rgba(255, 75, 64, 1) 100%
);
}
.number-slide3 {
background: rgb(182, 255, 64);
background: linear-gradient(
128deg,
rgba(182, 255, 64, 1) 0%,
rgba(63, 255, 71, 1) 100%
);
background: linear-gradient(
128deg,
rgba(189, 255, 83, 1) 0%,
rgba(43, 250, 82, 1) 100%
);
}
.number-slide4 {
background: rgb(64, 255, 242);
background: linear-gradient(
128deg,
rgba(64, 255, 242, 1) 0%,
rgba(63, 188, 255, 1) 100%
);
}
.number-slide5 {
background: rgb(255, 64, 156);
background: linear-gradient(
128deg,
rgba(255, 64, 156, 1) 0%,
rgba(255, 63, 63, 1) 100%
);
}
.number-slide6 {
background: rgb(64, 76, 255);
background: linear-gradient(
128deg,
rgba(64, 76, 255, 1) 0%,
rgba(174, 63, 255, 1) 100%
);
}
</style>
Add the component anywhere you want
<template>
<KeenSlider />
</template>
That's it! You can now use Nuxt Keen Slider in your Nuxt app ✨
[!NOTE] OPTIONAL I have seen absolute 0 CLS, maximum performance by wrapping the
Slider
component withClientOnly
.
Seems to stop working if the component is created with .client.vue extension.
You could try the same if you are having Lighthouse/PageSpeed score issues and you are aiming for maximum performance.Remember, this could not work depending on use case.
<template>
<ClientOnly>
<KeenSlider />
</ClientOnly>
</template>
# Install dependencies
pnpm install
# Generate type stubs
pnpm run dev:prepare
# Develop with the playground
pnpm run dev
# Build the playground
pnpm run dev:build
# Run ESLint
pnpm run lint
# Run Vitest
pnpm run test
pnpm run test:watch
# Release new version
npm run release
FAQs
Best, lightweight Keen Slider for best web performance
We found that nuxt-keen-slider demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.