Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
element-box
Advanced tools
Work with elements dimension and position more easily
![Build Status](https://img.shields.io/github/actions/workflow/status/astoilkov/element-box/main. yml?branch=main)
npm install element-box
I work with elements' dimension and position rarely enough to forget the details but often enough to frustrate me that it takes away my flow/productivity.
It's hard to recall what the difference between clientWidth
and offsetWidth
and does element.getBoundingClientRect()
include the borders or not.
This library provides a friendly API that let's you think about the topic more easily while adding functions that are otherwise hard to
getContentBox(element: HTMLElement): DOMRect
Element's dimensions without border, padding, and margin — element.getBoundingClientRect() - border - padding
.
getPaddingBox(element: HTMLElement): DOMRect
Element's dimensions with padding but without border and margin — element.getBoundingClientRect() - border
.
getBorderBox(element: HTMLElement): DOMRect
Equivalent to element.getBoundingClientRect()
.
getMarginBox(element: HTMLElement): DOMRect
Element's dimensions with padding, border, and margin — element.getBoundingClientRect() + margin
.
getWindowBox(): DOMRect
Something like window.getBoundingClientRect()
if it existed. If you are wondering, document.documentElement.getBoundingClientRect()
won't probably do what you want.
getElementBox(element: HTMLElement, options): DOMRect
Would be easier to show you examples:
// like that:
getElementBox(element, {
includePadding: true,
includeBorder: false,
includeMargin: false
})
// or like that:
getElementBox(element, 'content-box')
getElementBox(element, 'padding-box')
getElementBox(element, 'border-box')
getElementBox(element, 'margin-box')
FAQs
Work easily with an element's position and dimensions
The npm package element-box receives a total of 7 weekly downloads. As such, element-box popularity was classified as not popular.
We found that element-box 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.