
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.