An open API service indexing awesome lists of open source software.

https://github.com/tpkn/hashbro

Micro parser for url hash
https://github.com/tpkn/hashbro

Last synced: 3 months ago
JSON representation

Micro parser for url hash

Awesome Lists containing this project

README

        

# Hashbro

Micro parser for url hash

## Usage
```javascript
function onPage(link){
console.log(link);
}

var hash = new Hashbro(onPage);

// http://domain.com/#/page1/page2/page3/
hash.goto('/page1/page2/page3/');

// http://domain.com/#/page1
hash.back(2);
```