Node.js appears to be missing the multipart module
Posted
by Brenton Alker
on Stack Overflow
See other posts from Stack Overflow
or by Brenton Alker
Published on 2010-04-15T11:53:39Z
Indexed on
2010/04/15
12:03 UTC
Read the original article
Hit count: 592
I am trying to parse form data, including upload files with a node.js http server. All of the tutorial type articles I have found use a require("multipart");
to include the multipart module, but when I try the same I get:
Error: Cannot find module 'multipart'
I also can't find it in the current api docs (though it is in the google cached version). So, has this module been removed from the standard installation or is there something else that does the job?
© Stack Overflow or respective owner