0

I have designed an Apache Cordova Application that uses a Node.js web server to pull data from a web API and allows the Javascript based project to use data pulled from this API.

Is there a way that I can use this Node web server across an iphone implementation of this cordova application? I am currently testing the application by pulling data from the website's API, hosting in on a node (ex. localhost:3000) and then pulling the data from that address in the JS file in my project.

How can I implement this server so that it can be used on an iOS mobile device?

Roger99
  • 981
  • 2
  • 11
  • 42

1 Answers1

0

If you want to host your Node server somewhere so that devices can see it on a network, then Amazon AWS Elastic Beanstalk has an easy solution for that - just upload your Node project in a Zip file and they manage the server environment for you.

There's several other options out there depending on your needs, for example Heroku may be a good alternative.

Simon Prickett
  • 3,838
  • 1
  • 13
  • 26