dYXMO / ezrouter.js

A simple js router library that couldn't be simpler :D

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ezrouter.js

A simple js router library that couldn't be simpler.

  • No other library dependencies
  • Extremely fast

how to use

ezrouter('/index', () => {
  alert('hello,welcome to index page');
});
// #/index
ezrouter('/index/:id', (params) => {
  alert('you are now at index'+params.id);
})
// #/index/123 or #/index/awa etc.

You can read example.html for more.

About

A simple js router library that couldn't be simpler :D

License:Apache License 2.0


Languages

Language:JavaScript 53.6%Language:HTML 46.4%