[nodejs] [ANN] Pillow 0.0.7 (A CommonjS Package Loader for the Browser)

2012-09-04 Thread Hugo Windisch
Pillow scans directories searching for CommonJS packages (package.json files) and makes the packages usable in the browser (i.e. the found packages and modules can be accessed using the require() function). It supports multiple js files per package (and the dot notation in the require

[nodejs] Re: [npm] bundleDependencies bug? Cannot install request@2.11.0

2012-09-04 Thread Mikeal Rogers
fixed in 2.11.1 by @isaacs' pull request. On Sep 3, 2012, at September 3, 20121:23 AM, chakrit konsh...@chakrit.net wrote: Cross posted from node.js group since I didn't know there's a separate group for npm: Original: https://groups.google.com/forum/?fromgroups=#!topic/nodejs/MgKl4Y-NOo0

[nodejs] Re: npm permissions issues require path issues

2012-09-04 Thread Bert Belder
If I install locally, but as administrator it is installed in %APPDATA%. That would be very surprising. Are you sure? -- 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

Re: [nodejs] http.js socket handling bug?

2012-09-04 Thread Jimb Esser
It seems leaving the process.nextTick is fine, as long as it emits an error/close after the callbacks are registered if the error event was in fact missed between ticks, which seems like something easy to check for and a good interim fix if there is some larger architectural fix planned later.

[nodejs] Parsing multipart/mixed

2012-09-04 Thread Dan Milon
Hello, I am issuing HTTP requests to a third party API, through node, and the response has content-type multipart/mixed. Do you know if there is a parser module for this, or how i could use the multipart parser of node-formidable to achieve this? Thanks, danmilon. -- Job Board:

Re: [nodejs] Re: npm permissions issues require path issues

2012-09-04 Thread Seth Goldstein
Yes, I am sure. I can send you a directory listing. Any help would be great. I don't really care about global install, I really want it to work locally. On Tue, Sep 4, 2012 at 1:39 PM, Bert Belder bertbel...@gmail.com wrote: If I install locally, but as administrator it is installed in

[nodejs] Re: 4 Paradigms for Emitting Events from c++ -- None of them successful!

2012-09-04 Thread Brandon Benvie
Here are some examples that may help. Or might not. https://github.com/appjs/appjs/blob/master/src/native_window/native_window.cpp#L236 https://github.com/appjs/appjs/blob/master/src/includes/cef_scheme_handler.cpp#L105 https://github.com/appjs/appjs/blob/master/src/includes/cef_handler.cpp#L75

Re: [nodejs] Re: npm permissions issues require path issues

2012-09-04 Thread seth
I realized I didn't include the entire log. Also I have tried this with a previous version of npm and node and it still happens, so it must be something about my system setup. However, it is essentially windows 7 out of the box. it is connected to a domain. Any help would be appreciated. 0

[nodejs] node-struct

2012-09-04 Thread rhasson
Nate, I'm back with some more questions about node-struct and handling nested structures. In the example below, I created one simple struct with a single Int and another struct with an Int and a pointer to the first struct. What I noticed is that I can't access the int inside the nested