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 🙏

© 2025 – Pkg Stats / Ryan Hefner

growraf

v0.5.1

Published

A plugin for jquery.flot for smooth animations using requestAnimationFrame

Downloads

65

Readme

Growraf

npm

Growraf (pronounced grow-rough) is a plugin for flot charts, that produces smooth animations using requestAnimationFrame wherever possible.

Its a fork of the Growing plugin for flot, from Jürgen Marsch.

The API is the same with Growing plugin except from the steps & stepDelay combination. There is a new option named "duration" (in ms) that simplifies the rAF implementation and provides greater control.

Examples

Growraf example (pen) in comparison with Growing minor bugs

Growraf heavy data plots in comparison with Grow heavy data plots note the time increase with more data/plots

Growraf + Resize example

Growraf ReAnimate animating a plot between redraws.

Growraf Horizontal Bars (pen) animating a plot of horizontal bars.

Extras

  • Added the ability to reanimate a plot to new datapoints, by using setData() & draw().

  • Added a 'growFinished' event that is triggered on the plot's placeholder.

var $placeholder = $('#placeholder');
$placeholder.on('growFinished', function () {
   alert('Grow Animation Finished');
});

$.plot($placeholder, [{
        label: "linear",
        data: [[1,1], [2,2], /*...,*/ [10,10]],
        grow: { growings:[ { stepMode: "maximum" } ] }
    }], {
        series: { grow: { active: true, duration: 2000 } }
});

API

Read the Documentation here.

ChangeLog

  • 0.5.0 Add support for horizontal bar charts.

  • 0.4.6 Lint source with JSHint and release a bower package.

  • 0.4.5 Introduced reanimate feature. Code restructuring, cleanups & performance improvements.

  • 0.4.0 Initial version implementing rAF. Used for several unrecorded bug fixes and performance improvements.

Frequently Asked

  • Does it work on browsers not supporting requestAnimationFrame?

    Yes, Growraf checks if the current browser supports requestAnimationFrame (prefixed or not) and (if there is no support) fallbacks to setTimeout.

    Some of the browsers that the setTimeout polyfill is used include:

    • IE <= 8
    • Safari <= 5.1
    • Opera (12.1 as of writing this)
    • Firefox < 4.0
    • Chrome < 10.0

    sources: caniuse and MDN

    notes:

    • Based on paulirish's gist for the setTimeout polyfill.
    • Does not polyfill requestAnimationFrame for the rest of page, just for growraf.
  • Does it work in oldIE?

    Yes, as long as exCanvas is provided, it should work.

    BUT instead of delivering a choppy animation, I strongly suggest you to disable animations for those browsers by checking if window.G_vmlCanvasManager is defined and setting the series.grow.active property to false.

Powering

speedcurve