
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
svelte-lazy-image
Advanced tools
Svelte component to lazy load images using Intersection Observer
Svelte component to lazy load images using Intersection Observer.
npm install svelte-lazy-image
Set data-src
and/or data-srcset
on an img
element:
<script>
import { useLazyImage as lazyImage } from 'svelte-lazy-image';
</script>
<img data-src="https://via.placeholder.com/250?text=src1" alt="foobar" use:lazyImage />
Specify IntersectionObserver options via object passed to use
:
<script>
import { LazyImage, useLazyImage as lazyImage } from 'svelte-lazy-image';
</script>
<img src="https://via.placeholder.com/250?text=placeholder1"
data-src="https://via.placeholder.com/250?text=src1" alt="foobar" use:lazyImage={{ threshold: 0.5 }}
/>
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
/>
The component uses $$restProps
to pass props other than placeholder
, src
, or alt
to the underlying img
element. An example using img
attributes srcset
and sizes
:
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
srcset="https://via.placeholder.com/480 480w, https://via.placeholder.com/800 800w"
sizes="(max-width: 600px) 480px, 800px"
/>
Specify IntersectionObserver options:
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
options={{ threshold: 0.5 }}
/>
FAQs
Svelte component to lazy load images using Intersection Observer
The npm package svelte-lazy-image receives a total of 773 weekly downloads. As such, svelte-lazy-image popularity was classified as not popular.
We found that svelte-lazy-image 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.