Daniel Juhl

Results 21 comments of Daniel Juhl

Yes, but only if you actually use any of the JavaScript. Right now it would be possible to use markup components only, but neal would still require jQuery for eg....

At least thats how Bootstrap v3 is - but I don't think Bootstrap v4 has changed on that part.

I just looked, at it is not as clear at the new bootstrap site, but lets remove jQuery and simple apply info in the docs for neal, about which comp....

Another related case... ``` javascript var express = require('express'); var app = express(); var router = express.Router({ strict: true }); router.use('', function (req, res) { res.send('hi'); }); app.use('/strict', router); app.listen(4000);...

@dougwilson I'm not sure, if I fully understand the work-around you're explaining. So far, I can't manage to get the result I'm looking for, no matter how many times I...

@dougwilson Sorry, I read your comment, as if there were two work-arounds (the one you re-posted) AND another one using strict-routing on both application and router.

Any way I can debug locally?

If the concept / design is accepted, I'm happy to create tests and documentation. The default behaviour was changed in #9, but I suggest to add this as a feature,...

@dougwilson Is the following good enough? A request could be `GET /api/user/123`, and I would expect to be able to get the full route `/api/user/:id` in the request object. `server.js`...

@dougwilson I see your concerns, and that we have to re-think it, to ensure all methods will be handled correctly. Another approach could be to simply expose an array of...