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

@handy-ones/handy-svg

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@handy-ones/handy-svg

The most handy way to use <svg> on the web

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
15
increased by87.5%
Maintainers
1
Weekly downloads
 
Created
Source
handy_svg

External SVGs that you can style

lint

How it works

  1. Fetches your SVGs in browser with fetch request. And caches of course.
  2. Puts it into sprite that is stored in your body.
  3. Provides you with the React component and standalone API to use this icon in your code.
  4. That's it. You now may use all the fancy css-styling like if it was inline SVG.

Why

  1. Sprites may become huge, containing hundreds of icons, and you don't need all of your icons on every page.
  2. Styling with css is a must-have, and this is the only way of getting it except for inlining.
  3. Inlining SVGs with React might be painful (there is a tool though), it also increases the bundle size a nd just doesn't feel right.

Usage

Install it from npm
npm i handy-svg
React

import {HandySvg} from 'handy-svg';
import iconSrc from './icon.svg';

export const Icon = () => (
    <HandySvg
        src={iconSrc}
        width="32"
        height="32"
    />
);

I assume here that you use file-loader for bundling your svg-files and get public url to SVG file in iconSrc, like so:

module.exports = {
    module: {
        rules: [
            {
                test: /\.(png|jpe?g|gif|svg)$/i,
                loader: 'file-loader',
                options: {
                    name: '[path][name].[ext]'
                }
            }
        ]
    }
};

But in fact there is no difference for the handy-svg where you get your SVGs urls from.

Standalone

You may also use handy-svg without React at all.

import {injector} from 'handy-svg/lib/injector';

const src = "https://cdn-server.net/icon.svg";

// Fetches svg content and puts it to sprite
injector.load(src);

// Gets the id of your svg in sprite
const id = injector.getId(src);

// Then you can use it at your will
const svg = `<svg><use href="#${id}" /></svg>`;

API

<HandySvg />
import {HandySvg} from 'handy-svg';

type HandySvgProps = {
  src: string; // your icon url
  loadTimeot?: number; // load timeout. 4800 by default
  loadRetryCount?: number; // load retry. 2 by default
  [key: string]: string | number | undefined; // any extra props will be passed to svg tag
}

<HandySvg {...props} />
injector.load()
import {injector} from 'handy-svg/lib/injector';

type LoadOptions = {
    flushImmediate?: boolean; // inject icon to the body without debouncing
    timeout?: number; // load timeout. 4800 by default
    retryCount?: number; // load retry. 2 by default
}

injector.load(src: string, options: LoadOptions): Promise<void>;
injector.getId()
import {injector} from 'handy-svg/lib/injector';

injector.getId(src: string): string;

CSP

You should add hostnames of your icons to the connect-src directive of your Content-Security-Policy header for this to work properly.

License

MIT

FAQs

Package last updated on 18 Oct 2022

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