Error: Cannot find "connect-form" module - despite existing

I have a railjs application

I installed the connection form with:

$ npm install connect-form

It is also located in the package.json file
(for deployment in heroku)

I checked the node_modules folder and it is definitely there.

When I launch the application, I get:

Error: cannot find module 'connect-form'

+3
source share
1 answer

connect-form deprecated (maybe why it doesn't work), read about it here:

Expressjs bodyParser and connect-form

+6
source

All Articles