
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@egjs/svelte-conveyer
Advanced tools

Conveyer adds Drag gestures to your Native Scroll.
📱💻🖥
$ npm install @egjs/svelte-conveyer
<script>
import { useConveyer } from "@egjs/svelte-conveyer";
const {
ref: ref1,
// reactive properties
isReachStart,
isReachEnd,
// methods
scrollIntoView,
// events
onBeginScroll,
onFinishScroll,
} = useConveyer({
horizontal: false,
});
onBeginScroll(() => {
console.log("begin scroll");
});
onFinishScroll(() => {
console.log("finish scroll");
});
</script>
<div class="App">
<button id="prev" disabled={$isReachStart} on:click={() => {
scrollIntoView("start", {
align: "end",
duration: 500,
});
}}>PREV</button>
<button id="next" disabled={$isReachEnd} on:click={() => {
scrollIntoView("end", {
align: "start",
duration: 500,
});
}}>NEXT</button>
<div class="items" use:ref1>
<div class="item"><a href="#1">1</a></div>
<div class="item"><a href="#2">2</a></div>
<div class="item"><a href="#3">3</a></div>
<div class="item"><a href="#4">4</a></div>
<div class="item"><a href="#5">5</a></div>
<div class="item"><a href="#6">6</a></div>
<div class="item"><a href="#7">7</a></div>
<div class="item"><a href="#8">8</a></div>
<div class="item"><a href="#9">9</a></div>
<div class="item"><a href="#10">10</a></div>
<div class="item"><a href="#11">11</a></div>
<div class="item"><a href="#12">12</a></div>
</div>
</div>
| 9+(With polyfill), 11+ for Angular & Svelte | Latest | Latest | Latest | 7+ | 4+ |
Check our Demos.
See Documentation page.
See CONTRIBUTING.md.
Please file an Issue.
@egjs/svelte-conveyer is released under the MIT license.
Copyright (c) 2022-present NAVER Corp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
FAQs
Svelte Conveyer adds Drag gestures to your Native Scroll.
The npm package @egjs/svelte-conveyer receives a total of 17 weekly downloads. As such, @egjs/svelte-conveyer popularity was classified as not popular.
We found that @egjs/svelte-conveyer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.