Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
@saleae/react-contexify
Advanced tools
Go here.
Using yarn
$ yarn add react-contexify
Using npm
$ npm install --save react-contexify
import React from 'react';
import { Menu, Item, Separator, Submenu, MenuProvider } from 'react-contexify';
import 'react-contexify/dist/ReactContexify.min.css';
const onClick = ({ event, props }) => console.log(event,props);
// create your menu first
const MyAwesomeMenu = () => (
<Menu id='menu_id'>
<Item onClick={onClick}>Lorem</Item>
<Item onClick={onClick}>Ipsum</Item>
<Separator />
<Item disabled>Dolor</Item>
<Separator />
<Submenu label="Foobar">
<Item onClick={onClick}>Foo</Item>
<Item onClick={onClick}>Bar</Item>
</Submenu>
</Menu>
);
const App = () => (
<div>
<MenuProvider id="menu_id" style={{ border: '1px solid purple', display: 'inline-block' }}>
Right click me...
</MenuProvider>
<MyAwesomeMenu />
</div>
);
IE 11+ ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
Any idea and suggestions are welcome. There is a playground to help you start, just run yarn start
.
React Contexify is licensed under MIT.
FAQs
Add contextmenu to your react component with ease
The npm package @saleae/react-contexify receives a total of 84 weekly downloads. As such, @saleae/react-contexify popularity was classified as not popular.
We found that @saleae/react-contexify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.