Package Exports
- speyside
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (speyside) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Clientside history server. Has an interface broadly similar to Node's http, so if you're clever you can reuse your server handlers.
var spey = require('speyside');
var server = spey.createServer(function(req) {
console.log(req.url, req.state);
});
server.listen();
server.navigate('/foo', {bar: 'baz'}); //⇒ '/foo' {bar: 'baz'}Licence
MIT

