Reputation: 12258
I'm using Node with Express. Express has Connect kinda buried within it. How do you call Connect's various methods though? When I require Express then doing express.middleware.someconnectmiddleware fails...
Upvotes: 0
Views: 306
Reputation: 20345
They're all available on express under the same name.
express.bodyParser == connect.bodyParser
Upvotes: 2