I have a route for an API in an Express app that looks like this:
app.get(\'/:username/:bookmark/\', function(req, res) { // do stuff })
As
I think you should go with express routing process.
express
Add following line to your app.js file
app.use(express.static(path.join(__dirname, 'public')));
put your all .css files in {approot}/public/stylesheets folder .
.css
{approot}/public/stylesheets
and in your HTML files add links like following
HTML