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

@bukunmikuti/view-router

v1.0.1

Published

A super simple in-page router/navigator

Downloads

7

Readme

View Router


View Router is not in any way related to vue-router the official router of vue.js, neither are they alternatives.

View Router is a simple standalone in-page navigator.


Features 🎉

View Router is a simple library that helps you navigate between different views with style.

  • Super fast and minimal

  • Includes view transitions

  • Easy to set up

  • History API or hash navigation — Optional

  • Small sized (<10kb)

Demo

You might want to see how it works in a test environment before installing: Check for all demos here

Installation

View Router ships a browser build for <script> tags and an ES Module format. You can also install via npm.

NPM

npm i @bukunmikuti/view-router

Script include

<script src="https://unpkg.com/@bukunmikuti/view-router"></script>

ES Module

import ViewRouter from "https://cdn.skypack.dev/@bukunmikuti/view-router"

Set up 🚀

View router exposes a single object: ViewRouter where you can pass your options.

const viewrouter = new ViewRouter(options)

Instantiate the class by passing an object parameter which must include views: [] and other optional properties.

const viewrouter = new ViewRouter({
   views: [], //required
   navigation: "history"||"hash",
   transition: true||false, 
})

views: []

Type: Array of objects — required Description: This property stores each view's property in an object. It can contain several view definitions.

const viewrouter = new ViewRouter({
   views: [
   	{
   		id: "login", //required
   		path: "/login",
   		origin: "/login.html",
   		mounted() {}, //callback
   		render() {} //callback
   	},
   	
   	{/* another view */}
   	{/* another view */}
   ]
})

A view definition should include the following properties:

| View property | Description | Default Value | | :---------------: | :---------------: | :---------------: | | id | The 'id' attribute of the template tag — Required| undefined | | path | The URL path that triggers the view when navigated to. | undefined | | origin | If the view is located in another html document, this will contain the relative path to the document. | undefined | | mounted | Views are not part of the DOM by default, they only get mounted when routed to for the first time. Put any logic that depends on accessing elements of the view here. It is called only once | callback undefined | | render | This method is called each time a view is routed to | callback undefined |

navigation

Type: String — history or hash (optional) Description: Use hash navigation or Web history API. If undefined or false then routing is automatically disabled, else views: [{path: ""}] must be specified.

transition

Type: Boolean — optional Description: Enable or disable view transitions. Transition type must be specified on the view <template> tag. All transitions — fadeIn fadeInTop fadeInBottom fadeInLeft fadeInRight

<!--index.html-->
<template id="login" class="v-router fadeInLeft"></template>

<script type="module">
import ViewRouter from "..."

let v = new ViewRouter({
 //...
 transition: true
})
</script>

Methods

| Method | Description | Return Value | | :---------------: | :---------------: | :---------------: | | routeTo() | Navigate to the specified view. Accepts view id as parameter | executes render() |

Browser support

View Router currently works on all modern browsers that support async/await, fetch API and other es6 features. We plan on supporting older browsers in future release. Check all supported browsers here

Contribution

You can contribute by making pull requests to fix issues, dropping a code review/demo example or updating the readme. Your changes should be clearly stated. Thank you!

License

This project is available under the ISC Liscense