What’s New

server 1.0.7

1.0.7

Yarn and npm have different path resolution. Manually attached path-to-regexp-wrap, which fixes #43

This was giving inconsistent results when using yarn (vs the expected one with npm):

server(
  get('*', (ctx) => {
    return status(200);
  })
);
View original