3 rules
3 rules

Reputation: 1409

Why we need Nodejs before setup Phonegap?

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

Answers (2)

Trung
Trung

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

Alireza Davoodi
Alireza Davoodi

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.

Phonegap github source code

Upvotes: 2

Related Questions