
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
scroll-event-master
Advanced tools
用于在 Web 页面中监听滚动事件,可检测到达顶部、底部、最左侧和最右侧的情况,并允许自定义处理程序。
npm i scroll-event-master
或者使用 CDN 的方式:
<script src="https://unpkg.com/scroll-event-master/dist/scrollEventMaster.js"></script>
import ScrollEventMaster from "scroll-event-master";
const element = document.querySelector(".box");
const manager = new ScrollEventMaster(element as HTMLDivElement);
manager.on("bottom", () => {
console.log("到底了");
});
manager.on("top", () => {
console.log("到顶了");
});
manager.on("left", () => {
console.log("到最左了");
});
manager.on("right", () => {
console.log("到最右了");
});
ScrollEventMaster 通过 topLock、bottomLock、leftLock 和 rightLock 实现事件锁定,当值为 true 时,对应方向的到达事件处理程序将不可用,值恢复 false 时事件处理程序也会恢复。
新增事件处理程序,type 可取值 top | bottom | left | right
export type ScrollWindowEventMap = {
bottom: Event
top: Event
left: Event
right: Event
}
export type ScrollHandler<K extends keyof ScrollWindowEventMap> = (event: ScrollWindowEventMap[K]) => void
public on<K extends keyof ScrollWindowEventMap>(type: K, handler: ScrollHandler<K>): void {}
清除事件处理程序
public off(handler: ScrollHandler<any>): void {}
FAQs
用于在 Web 页面中监听滚动事件,可检测到达顶部、底部、最左侧和最右侧的情况,并允许自定义处理程序。
The npm package scroll-event-master receives a total of 1 weekly downloads. As such, scroll-event-master popularity was classified as not popular.
We found that scroll-event-master demonstrated a not healthy version release cadence and project activity because the last version was released 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.