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

mg-lerna

v0.0.2

Published

Currently, the parts out of which the charts are built (e.g. axes) are being reworked.

Downloads

5

Readme

Note: As heavy rework is underway, this fork is currently broken. Please come back later.

Changes on this fork:

  • updated all dependencies
  • renovated gulp tasks
  • migrated from jshint to eslint
  • removed dist files from git
  • added missing styling
  • updated build tasks to compile Sass files
  • modernized JavaScript
  • removed magic numbers
  • removed obsolete helper functions
  • reduced scope: removed tooltips, buttons and tables

Current development progress

Currently, the parts out of which the charts are built (e.g. axes) are being reworked.

The following gives an overview over which options are already finished.

Axes: const axis = new Axis(args)

This is semi-user-facing: When instantiating a new chart, a configuration object can be passed to the respective axis:

new LineChart({
  /// stuff
  xAxis: {
    // x axis configuration
  }
})

The configuration passed by the user will overwrite set defaults and computed properties, e.g. the scale function, which is computed by the graph.

  • [x] axes_not_compact -> compact to avoid negated conditionals
  • [ ] european_clock -> useEuropeanHours
  • [ ] inflator
  • [x] max_x -> scale
  • [x] max_y -> scale
  • [x] min_x -> scale
  • [x] min_y -> scale
  • [x] (min_y_from_data) domains are calculated based on the passed data by default, can be overwritten by minValue and maxValue in the passed scale
  • [x] (missing_text) that's not something an axis should need to worry about
  • [x] (missing_background) that's not something an axis should need to worry about
  • [ ] show_year_markers -> showYearMarkers
  • [x] xax_count -> tickCount
  • [x] yax_count -> tickCount
  • [x] xax_format -> tickFormat
  • [x] yax_format -> tickFormat
  • [x] x_axis -> xAxis.show (parsed by chart)
  • [x] y_axis -> yAxis.show (parsed by chart)
  • [x] x_extended_ticks -> extendedTicks
  • [x] y_extended_ticks -> extendedTicks
  • [x] x_label -> label
  • [x] y_label -> label
  • [x] (x_scale_type) scale specified through passed scale
  • [x] (y_scale_type) scale specified through passed scale
  • [x] xax_tick_length -> tickLength
  • [x] yax_tick_length -> tickLength
  • [x] xax_units -> prefix and suffix
  • [x] yax_units -> prefix and suffix
  • [x] yax_units_append -> prefix and suffix

New parameters:

These are set by the chart using the axis instance, but can be overwritten by the user if necessary.

  • orientation: axis orientation
  • top: top margin
  • left: left margin
  • scale: scale used by the axis

New user-facing parameters:

  • labelOffset: offset vertical to the axis. Provides a "sane" default, but can be overwritten.

Main Readme

MetricsGraphics.js is a library optimized for visualizing and laying out time-series data. At under 80KB (minified), it provides a simple way to produce common types of graphics in a principled and consistent way. The library currently supports line charts, scatterplots, histograms, bar charts and data tables, as well as features like rug plots and basic linear regression.

A sample set of examples may be found on the examples page. The example below demonstrates how easy it is to produce a graphic. Our graphics function provides a robust layer of indirection, allowing one to more efficiently build, say, a dashboard of interactive graphics, each of which may be pulling data from a different data source. For the complete list of options, and for download instructions, take a look at the sections below.

MG.dataGraphic({
    title: 'Downloads',
    description: 'This graphics shows Firefox GA downloads for the past six months.',
    data: downloads_data, // an array of objects, such as [{value:100,date:...},...]
    width: 600,
    height: 250,
    target: '#downloads', // the html element that the graphic is inserted in
    xAccessor: 'date',  // the key that accesses the x value
    yAccessor: 'value' // the key that accesses the y value
})

The API is simple. All that's needed to create a graphic is to specify a few default parameters and then, if desired, override one or more of the optional parameters on offer. We don't maintain state. In order to update a graphic, one would call MG.dataGraphic on the same target element.

The library is data-source agnostic. While it provides a number of convenience functions and options that allow for graphics to better handle things like missing observations, it doesn't care where the data comes from.

Though originally envisioned for Mozilla Metrics dashboard projects, we are making this repository public for others to use, knowing full well that we are far from having this project in good-enough shape. Take a look at the issues to see the milestones and other upcoming work on this repository. We are currently using semantic versioning.

http://metricsgraphicsjs.org

Important changes in v2.10

The library now depends on D3 4.x. The impact on MG users is minimal, though if you do use D3 for other work, here is the list of changes from 3.x to 4.x. Please refer to the release notes for further details.

Important changes in v2.0

  1. The library is now namespaced. dataGraphic is now MG.dataGraphic, convert_dates is now MG.convert.date, clone is now MG.clone, button_layout is now MG.button_layout and data_table is now MG.data_table. We added a new convenience function called MG.convert.number.
  2. The rollover_callback option has been renamed mouseover and expanded in order to make it more consistent with other libraries. We now have three callback functions available: mouseover, mouseout and mousemove.
  3. CSS rules have been prefixed and in some cases updated for consistency. activeDatapoint for instance is now mg-active-datapoint.

Quick-start guide

  1. Download the latest release.
  2. Follow the examples here and here to see how graphics are laid out and built. The examples use JSON data from examples/data, though you may easily pull data from elsewhere.

Dependencies

The library depends on D3. If you wish to enable tooltips or use buttons, please include jQuery as well. Versions of MG older than v2.10 depend on D3 3, whereas MG v2.10 onwards depend on D3 4.

Contributing

If you would like to help extend MetricsGraphics.js or fix bugs, please fork the library and install Node.js. Then, from the project's root directory install gulp:

npm install gulp

Then, install the library's dependencies:

npm install

To build the library from source, type:

gulp build:js

To run tests, type:

gulp test

We have a basic development environment which uses the project source to serve up an interactive example. To run it, type:

gulp serve

A development server will be available at http://localhost:4300. Just reload it as you make modifications to the files in src/ -- any changes made to the example source and data should be preserved.

The website metricsgraphicsjs.org is automatically uploaded/updated by travis ci when a new tag is created (corresponding to a new release). It is served from github pages using a netlify configuration maintained and controlled by William Lachance.

You might also be interested in writing addons for the library, in which case, have a read through this page.

Resources

Download package

The download package includes everything that you see on metricsgraphicsjs.org. In order to use the library in your own project, the only files that you'll need are the ones under dist. Remember to load D3 and jQuery. If you don't care about tooltips or the button layout, you won't need the latter. If your project uses Bootstrap, make sure you load MetricsGraphics.js after it.

Frequently asked questions

What does MetricsGraphics.js do that library x doesn't do?

If library x works for you, you should keep using it. We're not aiming to be competitive with libraries that already exist. We're aiming to make a library that meets our needs. We also happen to think that the world needs a principled data presentation library, and that many of our needs are the same as other folks'.

I only see colours for the first 10 lines in my chart, what gives?

The colors for the first ten lines, areas and legends are defined in the stylesheet for the light and dark themes. For an eleventh line, you would add the following CSS rules:

.mg-line11-color {
    stroke: lightpink;
}

.mg-area11-color {
    fill: lightpink;
}

.mg-hover-line11-color {
    fill: lightpink;
}

.mg-line11-legend-color {
    color: lightpink;
}

If you're plotting more than five lines in the same chart and using color to encode some dimension of the data, then you probably need to rethink the chart.

I get an error when I load MG alongside library x

If your project uses Bootstrap, make sure you load MetricsGraphics.js after it. If your project uses jQuery UI, load it after MetricsGraphics.js.

Gallery

Feel free to add your addons and websites to this list.

License

The MetricsGraphics.js code is shared under the terms of the Mozilla Public License v2.0. See the LICENSE file at the root of the repository. The current logo is courtesy of Font Awesome.