I'm using the express 4.0 framework for node.js
I have a simple server defined as follows
require('express')().get('/:path*', (req, res) => res.send(req.params.path)).listen(8082);
If submit a get request to "localhost:8082/a/b/c", it should return
a/b/c
but instead it returns
a
I'm following the * syntax from this guide