-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
Two weeks ago I had had a talk with Wang Tao, a C# MVP in China who is currently running his startup company and product named worktile. He asked me to figure out a synchronization solution which helps his product in the future. And he preferred me implementing the service in Node.js, since his worktile…
>>> More
-
as seen on Geeks with Blogs
- Search for 'Geeks with Blogs'
In my previous post I demonstrated about how to develop and deploy a Node.js application on Windows Azure Web Site (a.k.a. WAWS). WAWS is a new feature in Windows Azure platform. Since it’s low-cost, and it provides IIS and IISNode components so that we can host our Node.js application though Git…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to send data through a POST request from a node.js server to another node.js server. What I do in the "client" node.js is the following:
var options = {
host: 'my.url',
port: 80,
path: '/login',
method: 'POST'
};
var req = http.request(options, function(res){
console…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
node.js looks interesting BUT...
I must miss something - isn't node.js tuned only to run on a single process & thread? Then how does it scale for multi-core CPUs and multi-CPU servers? After all, it is all great to make fast as possible single-thread server, but for high loads I would want to…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to build an upload-centric app using Django. One way to do this is with nginx's upload module (nonblocking) but it has its problems. Node.js is supposed to be a good candidate for this type of application. But how can I make node.js act as an upload_handler() for Django (http://docs.djangoproject…
>>> More