I am trying to create my first node.js application, but while working with node server.js , I get the following error message:
connect: multipart: use the parser (multiparty, busboy, terrible) direct connection: restriction: Limit the size of the request in the reading place
as shown in this screenshot:

code snippet in which I use connect :
var connect = require('connect'), express = require('express'); var app = express(); app.use(connect.cookieParser()) .use(connect.session({secret: 'app_1'})) .use(connect.bodyParser())
How to fix this please? Many thanks!
Lucie kulza
source share