Reputation: 1409
I came across the site of Phonegap and in site they told us to install nodejs before setup Phonegap I actually can't understand why we need nodejs installed before starting Phonegap?
Upvotes: 2
Views: 201
Reputation: 1382
You can use .Net as Backend for Phonegap application, you do Not "run" using .Net.
Have a look at Phonegap FAQ
A PhoneGap application may only use HTML, CSS, and JavaScript. However, you can make use of network protocols (XmlHTTPRequest, Web Sockets, etc) to easily communicate with backend services written in any language. This allows your PhoneGap app to remotely access existing business processes while the device is connected to the Internet.
http://phonegap.com/about/faq/
Upvotes: 1
Reputation: 769
Because the phonegap is built with nodejs and if you check out phonegap cli source code you can see this
PhoneGap command-line interface and Node.js library.
Upvotes: 2