
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.