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

wolffia-ui

v0.0.15

Published

Charting library with d3js and tailwindcss

Downloads

17

Readme

Wolffia-UI

v.0.0.9

Wolffia-UI (named after Wolffia - The smallest flower) is our data visualization layer, based on D3 and Tailwind.

  • Responsive
  • consistent and easy to style
  • Support theming (Dark theme)
  • Support interactivity

Demo;

Getting started

  1. Create react app (https://create-react-app.dev/docs/getting-started)

  2. Install tailwindcss to your react app (https://tailwindcss.com/docs/guides/create-react-app)

  3. Install peer dependency - d3, luxon (if you are using line-charts, luxon will be removed at a later release)

  4. To install wolffia-ui to your React app,

    npm install --save wolffia-ui

Usage

To import a chart,

import { LineChart } from "wolffia-ui";

const Component = (props) => {
    const data = [];
    return (
        <>
            <LineChart 
                id="new-line" // This is a required prop
                data={data}   // This is a required prop
                {...otherProps}
            />
        </>
    );
}

export default component;

Features

Based on D3js & Tailwind

Basing the visualization layer on d3 gives us the flexibility to customize charts. Using tailwind gives us a light-weight CSS layer and ease of styling.

Stateless

States are managed in the component it is called from, thus giving the developer the flexibility to change things as they see fit.

Things to remember

  1. Every chart needs a unique id.

Why? This is done so, so that D3 can target the correct chart in case multiple charts are there on the page.

  1. margin{Left/Right/Bottom/Top} and padding{Left/Right/Bottom/Top} props of charts refer to the chart area (not the entire svg). The svg can be styled using the className prop of the chart.

  2. Normal text color is black and dark mode text is white. Normal background is white, while dark mode background color is bg-gray-900 https://tailwindcss.com/docs/customizing-colors. Customize this globally across your app by targeting .chart class.

  3. Individual components of a chart can be given classes by className{componentName} prop. Refer to that chart's documentation of how to target that component.

Storybook notes:

If you are new to storybook, please go through the below notes.

  1. There are two crescent moon icons at the top, which toggles two dark modes. a. Toggle the left one to toggle dark mode on the rendered canvas (applies tailwind) b. Toggle the right one to toggle dark mode on storybook (does NOT work on the rendered canvas, or the charts)

The purposes of both are different. The first one is for UI development, the second is for viewers to choose how they want to read the docs. Please click both on "Canvas" mode to see actual dark mode.

  1. To view multiple screen-sizes, Click the multi-screen icon at the top. Once you change orientation, refresh the chart for the new layout to take effect.

Our Inspirations

  1. https://observablehq.com/@d3/gallery
  2. https://app.rawgraphs.io