Reputation: 11
I have created a mobile app for Android and iOs, it used some parts of the Phonegap API (connection, FileAPI, FileTransfer, camera, audio)
The mobile app is responsive and works offline, my plan is to create a Desktop version for Windows, Linux and Mac using NodeWebkit https://github.com/rogerwang/node-webkit so I'm looking for an implementation or ideas of how to implement the Phonegap API using Node.js
As far as I know, it will be possible to implement this APIs:
Connection: Using Node dns module FileAPI: Using Node file implementation FileTransfer: Using the http module Camera: Using WebRTC Chrome APIS Audio: Using WebRTC Chrome media APIs
Do you think that the node modules mentioned are the appropriate ones? Do you know any current implementation of Phonegap APIs using Node.js?
Upvotes: 1
Views: 572
Reputation: 41
Try using the sails.js framework, built on node.js. You can use phonegap and bootstrap both with sails.
Upvotes: 1
Reputation: 304
I found this one: https://github.com/xverges/cordova-nodewebkit
The problem is that it's not active.
Upvotes: 1