
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
vanilla-ui-router
Advanced tools
Simple vanilla JavaScript router to be used inside a single page app to add routing capabilities.
The router comes with zero dependencies and can be used with any other libraries. It's based on the hashchange-Event.
$ npm install --save vanilla-ui-router
As UMD module this runs everywhere (ES6 modules, CommonJS, AMD and with good ol’ globals).
Let's assume your initial markup has the following structure:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.min.css" />
</head>
<body>
<!-- Entry point, dynamic content is rendered into this DOM element -->
<main id="app"></main>
<!-- Bundle where your JavaScript logic lives, even the router configuration -->
<script src="bundle.js"></script>
</body>
</html>
Then you could configure the router with the following JavaScript:
import {createRouter} from 'vanilla-ui-router';
// Initialize the router with the dynamic DOM entry point
const router = createRouter(document.getElementById('app'));
router
// Start route: The server side URL without a hash
.addRoute('', () => {
/*
Use navigateTo(…) to make dynamic route changes, i.e. to redirect to another route
*/
router.navigateTo('home');
})
.addRoute('home', (domEntryPoint) => {
domEntryPoint.textContent = 'I am the home route.';
})
.addRoute('about/:aboutId/:editable', (domEntryPoint, routeParams) => {
console.log('I am the about route.');
/*
routeParams are extracted from the URL and are casted to the correct type
(Number/Boolean/String)
*/
console.log(routeParams); // => { aboutId: 42, editable:false }
})
/*
If routes get more complex, e.g. you need to render a template URL,
pass a configuration object as second parameter (instead of the function)
*/
.addRoute('route-with-template-url', {
templateUrl: 'path/to/template.html' // is loaded and gets rendered
})
.addRoute('route-with-template-string/:id', {
templateString: '<p>Lorem ipsum dolor.</p>',
routeHandler: (domEntryPoint, routeParams) => {
/*
It's called just after rendering the template, so you can add route-specific logic.
But only if needed!
*/
}
})
/*
You can also define a templateId, i.e. if you have a template-script inside
your markup like:
<script type="text/template" id="template42">
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor, tenetur?
</p>
</script>
*/
.addRoute('route-with-template-id/:id', {
templateId: 'template42'
})
.addRoute('route-with-dispose', {
routeHandler: () => {},
dispose: () => {
// Is called before navigating to another route to do some cleanup if needed.
}
})
.addRoute('inject-custom-data', {
routeHandler: (domEntryPoint, routeParams, {customData}) => {
// It's passed as the last parameter of the route, for instance to pass a redux store.
},
}, { customData: 'moep'}) // if you need to pass custom data to your routes
.otherwise(() => {
// If no route configuration matches, the otherwise route is invoked.
console.log('I am the otherwise route');
router.navigateTo('404');
});
Please be aware of the licenses of the components we use in this project. Everything else that has been developed by the contributions to this project is under MIT License.
FAQs
Simple vanilla JavaScript router
The npm package vanilla-ui-router receives a total of 0 weekly downloads. As such, vanilla-ui-router popularity was classified as not popular.
We found that vanilla-ui-router 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.