
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.
animated-navigation
Advanced tools
Demo find here http://animated-navigation.surge.sh
provides navigation page with animation
npm install --save animated-navigation
import React, { useState } from 'react';
import { Switch, Route, BrowserRouter as Router, useHistory } from 'react-router-dom'
import Navigation from 'animated-navigation';
const Dummy = (props) => { // this is for getting the history object from react-router
let history = useHistory();
return <Navigation {...props} history={history} />
}
function App() {
const [showMenu, setShowMenu] = useState(false);
const onNavigate = () => {
setShowMenu(false)
}
return (
<React.Fragment>
<Router>
<Dummy //we need to pass history from react router as well, thats why using this Dummy
onNavigate={onNavigate} //callback when routing to another page
showMenu={showMenu} // if true , shows all the list of available pageS. if false shows the page corresponding to the URL
setShowMenu={setShowMenu} // function for changing the value of showMenu
data={ //available page list, keep note order is important
[{ path: '/', component: Home, name: 'Home' },
{ path: '/page1', component: Sample, name: 'page1' },
{ path: '/page2', component: Sample2, name: 'page2' },
{ path: '/page3', component: Sample3, name: 'page3' },
{ path: '/page4', component: Sample4, name: 'page4' }]
} />
{
!showMenu && //when the nav is visible, we don't need to show the current page which is pointed by the URL , we need only the nav list
<Switch>
<Route path="/page1">
<Sample />
</Route>
<Route path="/page2">
<Sample2 />
</Route>
<Route path="/page3">
<Sample3 />
</Route>
<Route path="/page4">
<Sample4 />
</Route>
<Route path="/">
<Home />
</Route>
</Switch>
}
</Router>
</React.Fragment>
);
}
MIT © abidhkm
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.