Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A simple dependency-free minimalistic JavaScript router
data-navigo
HTML attributeDrop the following into your page:
<script src="//unpkg.com/navigo"></script>
or via npm/yarn:
> npm install navigo --save
> yarn add navigo -S
const router = new Navigo('/');
The constructor of the library accepts a single argument - the root path of your app. If you host your project at https://site.com/my/awesome/app
, your root path is /my/awesome/app
. Then you have to define your routes.
router.on('/products/list', function () {
// do something
});
At the end you have to trigger the resolving logic:
router.resolve();
After that when you need a page change call the navigate
method. This one changes the URL and (by default) triggers resolve
.
router.navigate('/about');
Add data-navigo
attribute to your page links and they'll be transformed into navigate
callers.
<a href="/about/contacts" data-navigo>Contacts</a>
Checkout the online playground to see it in action.
> yarn dev
> yarn build
> yarn test
> yarn test-watch
8.11.1
Fixing a bug with history items when using hash based routing.
FAQs
A simple vanilla JavaScript router
The npm package navigo receives a total of 24,086 weekly downloads. As such, navigo popularity was classified as popular.
We found that navigo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.