
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
react-desktop-menus
Advanced tools
Desktop app menus with react
http://yannickbochatay.github.io/react-desktop-menus
npm install react-desktop-menus
import React from "react"
import { render } from "react-dom"
import { Menu, MenuItem, Divider } from "react-desktop-menus"
const action = () => console.log("hello")
render(
<Menu keyboard>
<MenuItem action={ action } label="Simple item"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-road"/> } label="Item with icon"/>
<MenuItem action={ action } icon={ <img src="build/icon.svg"/> } label="Item with any kind of icon"/>
<MenuItem disabled label="Item disabled" icon={ <i className="glyphicon glyphicon-headphones"/> }/>
<Divider/>
<MenuItem action={ action } label="Custom hover color" activeColor="pink"/>
<MenuItem action={ action } checkbox> Item as a checkbox </Menu.Item>
<MenuItem action={ action } checkbox defaultChecked> Item as a checkbox checked </Menu.Item>
<MenuItem action={ action } icon={ <i className="fa fa-modx"/> } shortcut="s" label="Item with shortcut"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-print"/> } info="Info" label="Item with info"/>
<MenuItem icon={ <i className="fa fa-bar-chart"/> } label="Submenu">
<Menu>
<MenuItem action={ action } label="Simple item"/>
<MenuItem action={ action } icon={ <i className="glyphicon glyphicon-road"/> } label="Item with icon"/>
<MenuItem action={ action } icon={ <img src="build/icon.svg"/> } label="Item with any kind of icon"/>
</Menu>
</MenuItem>
</Menu>
,
document.getElementById("content")
)
import { Menu } from "react-desktop-menus"
ReactDOM.render(<Menu>, document.getElementById("content"))
or (to load only what you need)
import Menu from "react-desktop-menus/lib/Menu"
ReactDOM.render(<Menu>, document.getElementById("content"))
import { Menu, MenuItem } from "react-desktop-menus"
ReactDOM.render(
<Menu>
<MenuItem action={ () => console.log(hello) } label="toto"/>
</Menu>,
document.getElementById("content")
)
or (to load only what you need)
import Menu from "react-desktop-menus/lib/Menu"
import MenuItem from "react-desktop-menus/lib/MenuItem"
FAQs
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.