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

@saskcan/stories-facets

v3.0.3

Published

Facets Component developed by Uncharted Software

Downloads

4

Readme

Facets

A Javascript UI component for interactive histograms

Facets provides a simple API for displaying histograms that are interactive. Facets is useful for quickly showing the results of Elasticsearch aggregations.

alt text

Usage

var container = $('#facets-container');

var groups = [{
    label: 'Phone',
    key: 'phone',
    facets : [{
        value: '555-1111',
        count: 5
    }, {
        value: '555-2222',
        count: 10
    }, {
        value: '555-3333',
        count: 15
    }]
}];

var facets = new Facets(container,groups);

alt text

A full list of interactive examples can be found here

Installation

The Facets Widget is available via NPM.

To use it as a JSPM dependency, first install JSPM:

npm install -g jspm

Now you can install it in your project:

jspm install stories-facets=npm:@uncharted.software/stories-facets

To consume it in your project, use:

import Facets from 'stories-facets';

Development

Requires Node/NPM and a global installation of Gulp for running builds.

To install all dependencies and start a Gulp watch:

npm install
gulp

Using the development version

Facets auto-links via JSPM on build/watch. This means you can use your local linked copy in other projects for quick iteration. To do so, run the following in your project that requires Facets:

jspm install --link npm:@uncharted.software/stories-facets

This will connect that project to your local development version of facets. Be aware that this is version sensitive so if your local version of facets doesn't match the version being consumed by your project this may not have the desired effect.

To unlink the project and go back to the version from npm, run:

jspm install --unlink npm:@uncharted.software/stories-facets

Run tests

In development mode, run gulp tdd --debug to run the tests in Chrome, and keep the browser open, re-running on changes.

To run the tests once and generate a coverage report, run gulp test.