npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

colrjs

v1.3.0

Published

A modular tool to extract Color Palettes out of an Images Pixelarray

Downloads

6

Readme

ColrJS

Npm package versionNpm package total downloadsNpm package licenseGithub tag

A lightweight, modern, extendable Color Palette extractor that can be used in the browser or in a node.js context.

Installing

To use ColrJS with node and/or a bundler such as webpack or rollup, install it via yarn or npm:

yarn add colrjs
# or use npm
npm install colrjs

You can also use it directly in the browser and include it via CDN or locally.

<head>
    ...
    <!-- as a local file -->
    <script src="./your/path/to/colrjs.browser.min.js"></script>
    <!-- or via CDN -->
    <script src="http://unpkg.com/colrjs"></script>
    ...
</head>

Getting started

Setting up the initial ColrJS instance is quick and requires only a configuration object. ColrJS provides functions to create one, to utilize editor autocompletion and type safety. For a more in depth guide on how to use ColrJS, take a look at the full documentation.

Start by importing or destructuring the required methods. You are free to use module or import syntax, ColrJS provides export for both standards. When included via CDN or locally, destructuring the globally accessible ColrJS property is the easiest way to access the API.

// node require syntax
const { ColrJS, defineConfig } = require('colrjs');

// modern es6 style syntax
import { ColrJS, defineConfig } from 'colrjs';

// if added to the global namespace
const { ColrJS, defineConfig } = ColrJS;

Creating a ColrJS instance

To use ColrJS, create a new instance and pass a configuration object containing a Processor to it as parameters.

Note: The examples below assumes you're using es6.

import { defineConfig, ColrJS, Monochromatic } from 'colrjs';

// create a processor configuration
const config = defineConfig({
    processors: {
        mono: Monochromatic(5),
    },
});

const colr = new ColrJS(config);

// You can now extract a Palette by using the extract Palette method.
const monochromaticPalette = await colr.extractPalette(<pixelArray>).mono();

Contributing

If you would like to contribute, take a look at the contribution guide.

License

Vay is licensed under the MIT License