jcubic / wayne

Service Worker Routing library for in browser HTTP requests
https://jcubic.github.io/wayne
MIT License
556 stars 29 forks source link

Add support for glob path #16

Closed jcubic closed 1 year ago

jcubic commented 1 year ago

express.js allow to use this syntax:

app.get('/__fs__/*', function(req, res) {
  res.send(req.params[0]);
});

Wayne should also support this syntax. Found why investigating #3