Receiving this warning in the console while running locally:
express deprecated req.param(name): Use req.params, req.body, or req.query instead at lib/web/articles/router.js:27:42
Looks like req.param('fresh'), should be req.params.fresh. I'll submit a quick PR with the change.