JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q37962F
  • License MIT

Clientside request handlers

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


npm version

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'}

Testling status

Licence

MIT