Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@frontendbox/image

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@frontendbox/image

Image preloader for febox

  • 0.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
2
Weekly downloads
 
Created
Source

@febox/image

image는 웹페이지의 로딩 시간을 줄이기 위해 사용됩니다. 이 패키지는 웹페이지에 사용되는 이미지들을 미리 로드하며, WEBP 이미지 포맷을 지원합니다.

설치

이 패키지를 사용하려면 먼저 프로젝트에 설치해야 합니다.

pnpm add -D @febox/image

기능

  1. 이미지 포맷 지원 확인: 현재 브라우저가 webp 이미지 포맷을 지원하는지 확인합니다.
  2. 이미지 로딩: 지원하는 포맷의 이미지를 로딩합니다.

사용법

이미지 포맷 지원 확인

import { isSupportWebP } from "@febox/image";

const isSupportedWebp = await isSupportWebP();
if (isSupportedWebp) {
  console.log("This browser supports webp format.");
} else {
  console.log("This browser does not support webp format.");
}

이미지 로딩

import { load } from "@febox/image";

const images = [
  {
    defaultSrc: "path/to/default/image.jpg",
    webpSrc: "path/to/image.webp",
  },
  // ... more images
];

load(images);

Keywords

FAQs

Package last updated on 08 Sep 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc