
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
visibilityobserver
Advanced tools
Experimental API for observing the visible box of an element
Note: This implementation currently has some serious performance problems when observing many elements or elements deeply nested in the DOM. It's based on
requestAnimationFrame()
,getComputedStyle()
, andgetBoundingClientRect()
which can cause additional "layouts" to happen on every frame. In the future this library could be refactored to useResizeObserver
,MutationObserver
,IntersectionObserver
, and scroll events in order to be much more performant.
npm install --save visibilityobserver
import VisibilityObserver from "visibilityobserver"
let visibilityObserver = new VisibilityObserver((entries) => {
for (let entry of entries) {
if (entry.visibleRect) {
highlightElem.style.display = "block"
highlightElem.style.top = entry.visibleRect.top + "px"
highlightElem.style.left = entry.visibleRect.left + "px"
highlightElem.style.width = entry.visibleRect.width + "px"
highlightElem.style.height = entry.visibleRect.height + "px"
} else {
highlightElem.style.display = "none"
}
}
})
visibilityObserver.observe(divElem)
FAQs
Experimental API for observing the visible box of an element.
The npm package visibilityobserver receives a total of 0 weekly downloads. As such, visibilityobserver popularity was classified as not popular.
We found that visibilityobserver 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.