![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.
flowing-liquid
Advanced tools
A component for building flowing chart.
# yarn
yarn add flowing-liquid
# npm
npm i flowing-liquid --save
Notice: Only el
option is required.
import FlowingLiquid from 'flowing-liquid'
const flowingLiquid = new FlowingLiquid({
el: '#chart', // canvas element, required
canvasWidth: 300, // canvas element width
canvasHeight: 300, // canvas element height
waterline: 60, // target waterline
flowingBody: [
{
waveWidth: 0.055, // wave width
waveHeight: 4, // wave height
colors: ['#F39C6B', '#A0563B'], // a css color Array or css color String
xOffset: 0, // start point offset, based on y-axis
speed: 0.08 // flowing speed
},
{
waveWidth: 0.04,
waveHeight: 7,
colors: ['rgba(243, 156, 107, 0.48)', 'rgba(160, 86, 59, 0.48)'],
xOffset: 2,
speed: 0.02
}
],
// set canvas background color
background: {
color: 'dodgerblue',
style: 'fill'
},,
// indicator text, default value is parameter waterline
font: {
bold: true,
color: '',
size: 50,
family: 'Microsoft Yahei',
text: ''
}
})
// 1st parameter means multiple waves spacing
// 2nd parameter means if canvas element show indicator text
flowingLiquid.render(5, true)
FAQs
A component for building flowing chart
We found that flowing-liquid 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.