
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-awesome-menus
Advanced tools
 [Checkout the demo](https://ronal2do.github.io/MenuShapeOverlays)
Based in the awesome work https://tympanus.net/Development/ShapeOverlays/index3.html
yarn add react-awesome-menu react-dom
import withMenu from 'react-awesome-menu'
const MENU_ITEMS = [
{
id: 0,
label: 'Home',
// Props received by the HOC are forwarded here
action: (props) => console.log('Any routing trigger you use'),
},
{
id: 2,
label: 'News',
action: (props) => console.log('Any routing trigger you use'),
},
{
id: 3,
label: 'About',
action: (props) => console.log('Any routing trigger you use'),
},
{
id: 4,
label: 'Contact',
action: (props) => console.log('Any routing trigger you use'),
},
]
// The HOC will also provide a `toggleMenu` to its child, so you can
// Manipulate the visibility as you wish
const App = withMenu({ items: MENU_ITEMS })(({ toggleMenu }) => (
<div>
<p>Hi there</p>
</div>
))
Thanks goes to these wonderful people (emoji key):
Ronaldo Lima 💻 | Gabriel Rubens 💻 |
|---|
This project follows the all-contributors specification. Contributions of any kind welcome!
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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.