Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
svelte-fast-dimension
Advanced tools
Fast dimension bindings using ResizeObserver.
Why? Svelte currently uses an iframe technique to measure dimensions so it works in older browsers. However, creating multiple iframes has a big performance impact and sometimes quirkiness. If your target browsers support ResizeObserver, this can significantly improve dimension binding performance.
npm install --save-dev svelte-fast-dimension
// svelte.config.js
import { fastDimension } from 'svelte-fast-dimension'
export default {
preprocess: [fastDimension()]
}
Use dimension bindings as usual, it will use ResizeObservers under-the-hood:
<script>
let a, b, c, d
</script>
<div
bind:clientWidth="{a}"
bind:clientHeight="{b}"
bind:offsetWidth="{c}"
bind:offsetHeight="{d}"
/>
svelte-fast-dimension
injects an import from svelte-fast-dimension/action
when preprocessing. This won't be detected during Vite's prebundling phase, and will cause on-the-fly prebundling which slows startup time. To fix this, add svelte-fast-dimension/action
to optimizeDeps.include.
MIT
1.1.0
FAQs
Fast dimension bindings using ResizeObserver
The npm package svelte-fast-dimension receives a total of 287 weekly downloads. As such, svelte-fast-dimension popularity was classified as not popular.
We found that svelte-fast-dimension 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.