I use PhoneGapand would like not to run / work with the Android emulator, but just work in the browser and work with Couchbase Lite, as if I were on the device.
I mean, I want to create / run a database, put some data there to see how it works, and then click / start it on / on the device.
So, I would like to run Couchbase Lite locally on my laptop so that it accepts http calls from my web application.
But since "Lite" means "built-in" in the device, the question arises : is it possible to run it on my laptop, but not on the device or emulator?
I understand that I can laugh at any http response that Couchbase Litecan provide me back to my ajax requests, but I don’t know what it can and cannot do, so I need to work with real data now.
For example, if I were using SQL, that would not be a problem, since I can install SQLite on Android as well as on a laptop. I can avoid using a simulator because in my browser on a laptop.
And the general question: what is the best way to work with Couchbase Litethe local machine in order to test everything, and not waste time playing games with the emulator?
source
share