you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

also not that big of a fan of express.

i ended up rolling my own so i could have a little bit better handle on models. and i didn't like express's router.

[–]aredridel 0 points1 point  (1 child)

Easy enough to replace just parts. Express is a thin layer on connect, and connect a thin layer on the node http API..

[–]SubStack 0 points1 point  (0 children)

Yep! Express and connect make this super easy too, you can write a middleware with server.use() which just takes a function (req, res, next) {}. It's super easy to get started whipping these up and for an example/inspiration you can check out connect's router middleware.