My application with file upload worked good with express 3.x, but after upgrade express module to 4.x, it didn't work anymore. After searching, I knew the reason,because of the middleware for processing multipart/form-data request body data was removed from the bodyParser middleware. Then I tried to install multer, but can't install it, following error : npm ERR! Error: No compatible version found: busboy@'^0.2.6' npm ERR! Valid install targets:
So what can i do next with my application, I really want to use express 4.x, anyone help me please? Thank you.
npm info busboy, is there a0.2.6entry in the versions list? If not, you might be behind a proxy that has an outdated npm repository. If it is there, then perhaps your npm binary is outdated. What doesnpm --versionsay?