![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.
blooming-menu
Advanced tools
A configurable and animated radial menu. BloomingMenu is a port of AwesomeMenu for the web.
You can install through npm and use browserify to make it run on the browser.
npm install --save blooming-menu
Or just download the minified version here.
Create a new BloomingMenu
object:
var menu = new BloomingMenu({
itemsNum: 8
})
Render it:
menu.render()
And now you can attach event listeners to the items of the menu, just like a regular DOM element.
menu.props.elements.items.forEach(function (item, index) {
item.addEventListener('click', function () {
console.log('Item #' + index + 'was clicked')
})
})
new BloomingMenu(opts)
Options object passed on instantiation time, e.g.:
var menu = new BloomingMenu({
startAngle: 60,
endAngle: 0
})
opts.itemsNum
Number
opts.startAngle
Number
90
opts.endAngle
Number
0
opts.radius
Number
80
opts.itemAnimationDelay
Number
0.04
opts.animationDuration
Number
0.4
opts.fatherElement
HTMLElement
document.body
opts.itemWidth
Number
opts.CSSClassPrefix
String
'blooming-menu__'
opts.mainContent
String
'+'
opts.injectBaseCSS
Boolean
true
Every method below is an instance method.
render
Attachs the instance to the DOM and binds all event listeners.
remove
Removes all DOM elements and event listeners.
open
Opens the menu programmatically.
close
Closes the menu programmatically.
selectItem(num)
Select programatically the num
item of the menu.
![]() | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|---|
Latest ✔ | Latest ✔ | 9+ ✔ | Latest ✔ | 8.0+ ✔ |
FAQs
A configurable and animated radial menu for the web
The npm package blooming-menu receives a total of 21 weekly downloads. As such, blooming-menu popularity was classified as not popular.
We found that blooming-menu 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.