I use PhoneGap and I would like to avoid starting/working with an Android Emulator but be simply in browser and work with Couchbase Lite as if I was on device.
I mean, I want to create/start a database, put some data there to see how it works, and then push/start it to/on device.
So, I would like to start Couchbase Lite locally on my laptop to make it receive http calls from my web app.
But since 'Lite' means 'embedded' to a device, there is a question: is it possible to launch it on my laptop but not on device or an emulator?
I understand that I could mock any http response that Couchbase Lite could provide me back on my ajax-requests but I don't know what it can and cannot do, so I need to work with real data for now.
For example if I had used SQL it would not be a problem, since I can install SQLite on Android as well as on Laptop. I may avoid using simulator, being on my browser on my Laptop.
And general question: what is the best practice how to work with Couchbase Lite on local machine to test all stuff instead of wasting time playing with emulator?