Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/couchbaselabs/pouchdb-angularjs-app
Sync data with Couchbase using AngularJS and PouchDB
https://github.com/couchbaselabs/pouchdb-angularjs-app
Last synced: 1 day ago
JSON representation
Sync data with Couchbase using AngularJS and PouchDB
- Host: GitHub
- URL: https://github.com/couchbaselabs/pouchdb-angularjs-app
- Owner: couchbaselabs
- Created: 2015-09-28T17:13:13.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-28T17:13:49.000Z (about 9 years ago)
- Last Synced: 2024-04-12T16:19:15.986Z (9 months ago)
- Language: JavaScript
- Size: 352 KB
- Stars: 14
- Watchers: 56
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sync NoSQL Data With PouchDB, AngularJS, and Couchbase
This is a sample project to demonstrate how you can use Couchbase as your database using only AngularJS and JavaScript in your web application.
## Instructions
Download the latest master branch commit as well as the latest version of the Couchbase Sync Gateway. From your Terminal or Command Prompt, with the project as your current working directory, run:
```
python -m SimpleHTTPServer 9000
```This will start serving the web application using a lightweight Python server. If you don't serve the application and try to run it by opening the HTML file in your web browser you'll get cross origin resource sharing (CORS) related issues.
With the Couchbase Sync Gateway downloaded, from the Terminal or Command Prompt, start the Sync Gateway by running:
```
/path/to/sync/gateway/bin/sync_gateway /path/to/project/sync-gateway-config.json
```You can now test the application by visiting **http://localhost:9000** from your web browser.
## Resources
PouchDB - [http://www.pouchdb.com](http://www.pouchdb.com)
AngularJS - [http://www.angularjs.org](http://www.angularjs.org)
Couchbase - [http://www.couchbase.com](http://www.couchbase.com)