Re: [nodejs] Re: global authorization

2013-02-12 Thread Eric Muyser
You need to configure the transports because they do not include flash by default and thus do not serve a crossdomain file. https://github.com/LearnBoost/Socket.IO/wiki/Configuring-Socket.IO On Mon, Feb 11, 2013 at 11:24 PM, Bodo Kaiser wrote: > This is a module specific question: you should sear

[nodejs] Fwd:

2013-02-12 Thread Michael P
http://www.teicosgroup.com/gcr4rv.php?s=lf -- -- 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

[nodejs] Code exits without error

2013-02-12 Thread António Ramos
Hello my code exits after some time (10 minutes or just a minute) and no error in console. Can someone tell me why? xmlrpc = require("xmlrpc") args=process.argv.splice(2) comName = args[0] host=args[1] port=args[2] console.log("RFID at :"+comName+" Remote Server at:"+host+" port:"+port) SerialP

Re: [nodejs] Re: Synchronous http client

2013-02-12 Thread Isaac Schlueter
Gmail is not a very good code editor. Did you find the bug? ;) On Tue, Feb 12, 2013 at 2:01 PM, Isaac Schlueter wrote: > ```javascript > // request-queue.js > // usage: > // var q = require('./request-queue.js') > // q.add('http://google.com/', googleCallback); > // q.add('http://facebook.com/',

Re: [nodejs] Re: Synchronous http client

2013-02-12 Thread Isaac Schlueter
Vikram, Put all your requests into a queue. In your run() function, shift the next request off the queue. If there is nothing, you're done. If there is something, process it, and when it's done, call run() again. You don't need synchronous HTTP. You also don't really need control-flow utils o

Re: [nodejs] Elegant way to require('some-app-component')

2013-02-12 Thread greelgorke
you can put a tar-ball as dependency too, this is what we do with our private packages. another approach is to npm link the packages locally Am Dienstag, 12. Februar 2013 20:21:14 UTC+1 schrieb George Snelling: > > Never mind, I think I figured it out. In NPM I think all the modules you > nee

Re: [nodejs] Elegant way to require('some-app-component')

2013-02-12 Thread George Snelling
Thanks Dan, see http://stackoverflow.com/questions/5917249/git-symlinks-in-windows In our world (windows 7, osx, git 1.7-8) when running git with normal, non-admin permissions, symlinks checked into nix boxes were created as text files on the windows boxes. We didn't dig too much deeper. O

Re: [nodejs] Elegant way to require('some-app-component')

2013-02-12 Thread George Snelling
Never mind, I think I figured it out. In NPM I think all the modules you need are themselves visible to the public npm repository, which does simplify everything as ryanos points out. However, putting closed source code in the public npm repository, even marked as private, makes us pretty ne

Re: [nodejs] Elegant way to require('some-app-component')

2013-02-12 Thread Dan Wierenga
On Tue, Feb 12, 2013 at 10:43 AM, George Snelling wrote: > We have this issue too. We thought symlinks in node_modules would work, but we've got some windows folks, so no luck there. I'm too new to Node to know if/how npm handles it, but symlinks work on Windows for post-Vista systems. See the "

Re: [nodejs] Elegant way to require('some-app-component')

2013-02-12 Thread George Snelling
Isaac, We have this issue too. We thought symlinks in node_modules would work, but we've got some windows folks, so no luck there. I was looking at npm, and as far as i can tell, it looks like your pattern is to check most of node_modules into git, and then pull in almost all modules, yours

Re: [nodejs] Known failures with "make test"?

2013-02-12 Thread Brent Baker
Thanks! With that change I am now able to run the "test" target cleanly. -b- On Tuesday, February 12, 2013 11:51:41 AM UTC-5, Ben Noordhuis wrote: > > On Tue, Feb 12, 2013 at 5:45 PM, Brent Baker > > wrote: > > I am seeing 2 failures running the "test" make target with a clean clone > of > >

Re: [nodejs] Not able to download .msi file for Windows from nodejs.org

2013-02-12 Thread Ben Noordhuis
On Tue, Feb 12, 2013 at 4:24 PM, wrote: > Hi, > > When I click on link for .msi file for Windows, it says 404 Not Found > > I am referring to this link > > http://nodejs.org/dist/v0.8.19/node-v0.8.19-x86.msi > > Please Please Please help me. > I want to learn NodeJS & I just can't install it on W

[nodejs] Re: Not able to download .msi file for Windows from nodejs.org

2013-02-12 Thread mscdex
On Feb 12, 10:24 am, kanitkar.abhis...@gmail.com wrote: > When I click on link for .msi file for Windows, it says 404 Not Found > > I am referring to this link > > http://nodejs.org/dist/v0.8.19/node-v0.8.19-x86.msi It works for me. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines:

Re: [nodejs] Known failures with "make test"?

2013-02-12 Thread Ben Noordhuis
On Tue, Feb 12, 2013 at 5:45 PM, Brent Baker wrote: > I am seeing 2 failures running the "test" make target with a clean clone of > the git repo and I am wondering if this is a local config issue I have or > are these known issues? > > platform: OS X 10.8 > > % ./configure > % make -j20 > % make t

[nodejs] Known failures with "make test"?

2013-02-12 Thread Brent Baker
I am seeing 2 failures running the "test" make target with a clean clone of the git repo and I am wondering if this is a local config issue I have or are these known issues? platform: OS X 10.8 % ./configure % make -j20 % make test ... === release test-child-process-customfd-bounded ===

[nodejs] Not able to download .msi file for Windows from nodejs.org

2013-02-12 Thread kanitkar . abhishek
Hi, When I click on link for .msi file for Windows, it says 404 Not Found I am referring to this link http://nodejs.org/dist/v0.8.19/node-v0.8.19-x86.msi Please Please Please help me. I want to learn NodeJS & I just can't install it on Windows machine :( -- -- Job Board: http://jobs.nodejs.o

[nodejs] Re: Synchronous http client

2013-02-12 Thread asynqronic
On Tuesday, February 12, 2013 6:18:19 PM UTC+7, vikram patil wrote: > > Thanks but its not known how many requests I am going to make ... e.g. if > code reads a file will multiple http request it may or may not pipeline > results based on > configuration specified in that file. So my implementa

[nodejs] Re: Synchronous http client

2013-02-12 Thread vikram patil
Thanks but its not known how many requests I am going to make ... e.g. if code reads a file will multiple http request it may or may not pipeline results based on configuration specified in that file. So my implementation is around synchronous http requests and it analyzes result structure using

Re: [nodejs] Re: Query on ImageMagick

2013-02-12 Thread Mark Hahn
I use the identify command to get the image metadata. On Tue, Feb 12, 2013 at 3:04 AM, greelgorke wrote: > check the err object in your callback for im and check the third param > which is stderr. if stdout is null then probably an error is occurred > > Am Dienstag, 12. Februar 2013 09:46:02 UT

[nodejs] Re: Query on ImageMagick

2013-02-12 Thread greelgorke
check the err object in your callback for im and check the third param which is stderr. if stdout is null then probably an error is occurred Am Dienstag, 12. Februar 2013 09:46:02 UTC+1 schrieb Rakesh Kumar: > > I am using image urls in my nodejs server directly to fetch images. what i > want i

[nodejs] Re: Synchronous http client

2013-02-12 Thread greelgorke
you don't need synchronous requests for pipelining: http.request('url1', function(res){ res.on('data',function(data){/*collect it*/}) res.on('end',function(){/*eval your data and do next request*/ http.request('url2', func...)} } of course you can use async lib aswell. Am Dienstag, 12. Febr

[nodejs] Synchronous http client

2013-02-12 Thread vikram patil
Hello All, I am looking for HTTP client module in node.js which can help me to create GET, POST, multipart request very simply and also that request should be synchronous. My goal is to develop testing framework so that we can pipeline various http requests to server and evaluate resul

[nodejs] Query on ImageMagick

2013-02-12 Thread Rakesh Kumar
I am using image urls in my nodejs server directly to fetch images. what i want is to create thumbnails of the images and show it in the browser. The problem i am facing is with imagemagick. stdout is showing null values. How to get data of resized image? Below is the code i am implementing. url

[nodejs] Re: [ANN] MuContent - CMS (restyling)

2013-02-12 Thread AndDM
Hi, i wrote multisite implementation. Regards. On Tuesday, January 8, 2013 5:53:16 PM UTC+1, AndDM wrote: > > Hi, i rewrite my CMS project, maybe someone could have interest on it: > https://github.com/anddimario/mucontent > > Best regards. > -- -- Job Board: http://jobs.nodejs.org/ Posting gu

Re: [nodejs] Re: does libuv's event loop handle all callbacks?

2013-02-12 Thread Bodo Kaiser
Thank you. I will take a look. Am 12.02.2013 um 09:49 schrieb Floby : > I would recommend https://developers.google.com/v8/embed as good reading > material to understand what v8 does and does not do. > > On Monday, 11 February 2013 15:47:51 UTC+1, Bodo Kaiser wrote: >> >> Hello, >> >> last we

Re: [nodejs] Nodejs Azure command line

2013-02-12 Thread Glenn Block
Hi almarjin Long overdue reply. Are you using Azure websites or Cloud Services? We are just adding "azure site log tail" which will allow you to stream your console output over HTTP to our CLI tool. It's shipping in hours, and will be in npm. Cheers Glenn On Mon, Oct 1, 2012 at 11:07 AM, almarj

[nodejs] Re: does libuv's event loop handle all callbacks?

2013-02-12 Thread Floby
I would recommend https://developers.google.com/v8/embed as good reading material to understand what v8 does and does not do. On Monday, 11 February 2013 15:47:51 UTC+1, Bodo Kaiser wrote: > > Hello, > > last weekend I asked how nodejs event loop worked and I became a great > link about it: http