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

color-loader

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

color-loader

Image color palette loader for webpack

  • 1.0.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

color-loader

A webpack loader that extracts the color palette for an image

Dependencies

This loader depends on the node-canvas library, which requires Cairo and some other dependencies to be installed on the machine that runs your webpack builds.

macOS

brew install pkg-config cairo libpng jpeg giflib

Ubuntu

sudo apt-get install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++

Fedora

sudo yum install cairo cairo-devel cairomm-devel libjpeg-turbo-devel pango pango-devel pangomm pangomm-devel giflib-devel

Solaris

pkgin install cairo pkg-config xproto renderproto kbproto xextproto

Windows

Windows installation instructions are available here.

Installation

Install color-loader using your favourite package manager:

yarn add --dev color-loader

...or

npm install --save-dev color-loader

Usage

Get a color palette comprised of the most dominant colors in your image:

import colors from 'color-loader!./path/to/image.jpg';
// returns array of RGB color strings

You can use it in your webpack configuration, too, however this means that all images that you import or require will return an array of colors.

{
  ...
  module: {
    rules: [
      {
        test: /\.(jpg|png|gif)$/,
        use: 'color-loader'
      }
    ]
  }
}

Options

Get only the most dominant color of the image by passing the simple query param to the loader:

import color from 'color-loader?simple!./path/to/image.jpg';
// returns a single RGB color string

Keywords

FAQs

Package last updated on 27 Nov 2017

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