![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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.
Growraf example 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 ReAnimate animating a plot between redraws.
Growraf Horizontal Bars animating a plot of horizontal bars.
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 } }
});
Read the Documentation here.
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.
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:
notes:
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.
FAQs
A plugin for jquery.flot for smooth animations using requestAnimationFrame
We found that growraf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.