Im using a latest version Polymer Starter Kit, and use page.js as a router.
I want my url like this : http://host.com/search?keywords=blablabla
But i can not access a query string, im also search at github project of page.js: https://github.com/visionmedia/page.js/ and viewing a sample of query string but i dont understand to implement it to my project
Here my snippets of my code :
page('/search', function(data) {
app.route = 'search';
app.params = data.queryParams;
});