The core http parser is exposed via the private APIs just look at the source of http.js in node's source. I will warn however that it does seem to change between versions as the node core team tries to make every release faster than the last.
I've written a couple pure-js http parsers, they are not complete yet though. If you use my latest one, I'll keep on working on it since I need it for my js-git project. https://github.com/creationix/http-codec On Mon, Jun 10, 2013 at 6:09 PM, Daniel Rinehart <[email protected]> wrote: > One of the common recommended packages is: > https://github.com/substack/node-parsley > > > -- Daniel R. <[email protected]> [http://danielr.neophi.com/] > > > On Mon, Jun 10, 2013 at 6:07 PM, Gregg Caines <[email protected]> wrote: > >> Does anyone know if the core lib exposes the http parser somehow? Or if >> there's a package on npm worth using for http parsing? I saw a few >> packages but they look mostly abandoned. >> >> I'm looking for something smart enough to handle real (and trickier) >> requests, like chunked encoding. >> >> Thanks! >> >> G >> >> -- >> -- >> Job Board: http://jobs.nodejs.org/ >> Posting guidelines: >> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines >> You received this message because you are subscribed to the Google >> Groups "nodejs" group. >> To post to this group, send email to [email protected] >> To unsubscribe from this group, send email to >> [email protected] >> For more options, visit this group at >> http://groups.google.com/group/nodejs?hl=en?hl=en >> >> --- >> You received this message because you are subscribed to the Google Groups >> "nodejs" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> For more options, visit https://groups.google.com/groups/opt_out. >> >> >> > > -- > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "nodejs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
