Open alandarev opened 9 years ago
If you want to parse the querystring then require('querystring')
.
If you want to parse the body then require('body')
If you want to handle people that POST actual files using <input type='file'>
in the browser, use a multipart file parser.
Okay, then there is no module in http-framework dedicated to handling these already simple tasks? Got ya :+1:
Granted I want to use simple middleware to parse arguments submitted to the server. Shall I use multipart example, or there is no appropriate example yet?