-
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 ASP.net Weblogs
- Search for 'ASP.net Weblogs'
The Windows Azure PowerShell for Node.js is a command-line tool that allows the Node developers to build and deploy Node.js apps in Windows Azure using Windows PowerShell cmdlets. Using Windows Azure PowerShell for Node.js, you can develop, test, deploy and manage Node based hosted service in…
>>> 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 Geeks with Blogs
- Search for 'Geeks with Blogs'
When I described on how to host a Node.js application on Windows Azure, one of questions might be raised about how to consume the vary Windows Azure services, such as the storage, service bus, access control, etc.. Interact with windows azure services is available in Node.js through the Windows Azure…
>>> More