CommaToast
CommaToast

Reputation: 12258

How do you use Connect.js methods if you're running Express.js?

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

Answers (1)

Jonathan Ong
Jonathan Ong

Reputation: 20345

They're all available on express under the same name.

express.bodyParser == connect.bodyParser

Upvotes: 2

Related Questions