On Thu, Jul 26, 2012 at 6:28 PM, Ben Noordhuis <[email protected]> wrote:
> On Fri, Jul 27, 2012 at 12:24 AM, wavded <[email protected]> wrote: > > Does anyone have a list of good resources on learning libuv / c++ / v8 > > stuff? > > > > I'm a JS guy, dynamic languages, and not very good node addon stuff (or > C or > > C++) but want to get better. Have went through the node.js docs but it > only > > helps so far. What has been helpful for you? > > > > Thanks much! > > Marc > > It sounds kind of corny but source code is the best documentation. > uv.h and v8.h are fairly well commented and both projects have > extensive test suites, read them. > +1 I recently began studying libuv. Reading the comments in uv.h and checking out the tests is exactly how I got started. You'll be surprised how far that can take you. uv.h: https://github.com/joyent/libuv/blob/master/include/uv.h Tests: https://github.com/joyent/libuv/tree/master/test -- Kevin Swiber Projects: https://github.com/kevinswiber Twitter: @kevinswiber -- 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
