npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

jong-router

v0.1.13

Published

A lightweight and simple-to-use web components router in Vanilla JavaScript with support for guards, nested routes, page not found, passing query parameters to components, passing route parameters to components, passing route data to components, and a rou

Downloads

25

Readme

JongRouter

A lightweight and simple-to-use web components router in Vanilla JavaScript with support for guards, nested routes, page not found, passing query parameters to components, passing route parameters to components, passing route data to components, and a router link for single-page application navigation without reloading the page.

Features

  • Routing: Define routes and associate them with components.

  • Guards: Implement route guards to control navigation based on conditions. (Example)

  • Nested Routes: Create hierarchical routes for nested components. (Example)

  • Page Not Found: Handle routes that do not match any defined route. (Example)

  • Query Parameters: Pass query parameters to components. (Example)

  • Route Parameters: Extract and pass route parameters to components. (Example)

  • Route Data: Include additional data associated with each route. (Example)

  • Router Link: Use attribute router-link to navigate without reloading the page. (Example)

Installation

Include the jong-router.js script in your HTML file.

Plug & Play, Import directly from cdn

<!-- via html -->
<script type="module" src="https://cdn.jsdelivr.net/npm/jong-router@latest/dist/jong-router.min.js"></script>
// via js
// latest 
import JongRouter from 'https://cdn.jsdelivr.net/npm/jong-router@latest/dist/jong-router.min.js'

// or specific version
import JongRouter from 'https://cdn.jsdelivr.net/npm/[email protected]/dist/jong-router.min.js'

Or Install using NPM

// or via npm
npm i jong-router   

Usage

  1. Initialize the Router:

const router = new JongRouter([

  { pattern: '/', component: import('./components/HomeComponent') },

  { pattern: '/about', component: import('./components/AboutComponent') },

  // Add more routes as needed

], document.getElementById('app') );



router.init();
  1. Create Components:

Create your web components for each route.


// Example: HomeComponent.js

class HomeComponent extends HTMLElement {

  connectedCallback() {

    this.innerHTML = '<h1>Home Component</h1>';

  }

}



customElements.define('home-component', HomeComponent);
  1. Navigate with Router Links:

Use the router-link attribute to create navigation links.


<!-- Example: index.html -->

<a router-link href="/">Home</a>

<a router-link href="/about">About</a>
  1. Guards

Implement guards for route conditions


const router = new JongRouter([

  {

    pattern: '/dashboard',

    component: import('./components/DashboardComponent'),

    guards: [() => isAuthenticated()],

    redirect: '/login',  

  },

  { pattern: '/login', component: import('./components/LoginComponent') }, 
  // ...other routes

]);



function isAuthenticated() {

  // Your authentication logic here

  return true;

}
  1. Handle Route Parameters and Query Parameters:

Access route parameters and query parameters in your components.


// Example: UserComponent.js

class UserComponent extends HTMLElement {

  connectedCallback() {

    const routeParams = JSON.parse(this.getAttribute('route-params'));

    const queryParams = JSON.parse(this.getAttribute('query-params'));



    this.innerHTML = `<h1>User Details</h1>

                      <p>User ID: ${routeParams.id}</p>

                      <p>Query Param: ${queryParams.example}</p>`;

  }

}



customElements.define('user-component', UserComponent);

How to run development server?

git clone [email protected]:josnin/jong-router.git 
cd ~/Documents/jong-router/
npm install
npm run dev

Help

Need help? Open an issue in: ISSUES

Contributing

Want to improve and add feature? Fork the repo, add your changes and send a pull request.