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
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
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
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/',
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
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
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
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
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 "
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
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
> >
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
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:
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
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 ===
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
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
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
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
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
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
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
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
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
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
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
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
27 matches
Mail list logo