Skip to content

staxmanade/sample-pouch-couch-databaseperuser

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

Reason for being:

This prototype came out of my personal need to play with PouchDB and CouchDB where I wanted to explore what it would take to allow each and every single user who registered with the applicaiton to acquire their own database (some bucket to store and syncronize their data across devices). A place where each user (and only that user) has permission to their data in the database (except of course the server-admin user).

This model fits nicely with many types of applications where we want data to be syncronized across devices for a user and the PouchDB/CouchDB combination seemed like it'd be a good fit. So I spent some time organizing this prototype to prove it out and see where I could take it.

I think this concept and infrastructure can be used in may other types of apps and I hope you find it useful as a reference. The current end goal of this prototype is to take my learnings from it and use in a side project or other app ideas I have cooking.

This example is of-course very simplified (or at least I tried), but it shows a real-world client/server configuration with some interesting technologies.

If you discover any potential security holes or other points of interest that you think would make this tutorial/sample easier to learn/work with, please open a github issue or even better a pull request.

What they don't tell you about CouchDB...

Project breakdown

  1. Pre-recs

Pre-recs

You'll need to have some 3rd party applicaitons installed to play with this sample.

  1. Docker
  2. NodeJS/NPM

Quick Start

git clone https://github.com/staxmanade/sample-pouch-couch-databaseperuser.git
cd sample-pouch-couch-databaseperuser/server/app
npm install
cd ../

NOTE: the ./servers/app/package.json contains a postinstall script that also uses jspm install in the ./servers/app/client/ folder to install client app dependencies.

Then edit the ./server/.env file with necessary configuration - such as COUCHDB_USER and COUCHDB_PASSWORD. You can learn more about passing environment variables into docker on my blog.

Also update the ./server/couchdb/local.ini and look for TODO: comments - update accordingly.

Once it's configured, then you can:

docker-compose up

Read the rest of this Readme to get a better idea of all the components in here...

Some Todos

While the prototype is currently working, there are some interesting TODO's that I'd like to accomplish (including here instead of in the github issues for visibility).

The Tech

This project was pieced together with an assortment of the following tech.

Get the Codes

  1. Clone the repo git clone https://github.com/staxmanade/sample-pouch-couch-databaseperuser.git
  2. CD into cd sample-pouch-couch-databaseperuser
  3. cd ./servers/app && npm install

NOTE: the ./servers/app/package.json contains a postinstall script that also uses jspm install in the ./servers/app/client/ folder so to also install client app dependencies.

  1. cd ../ (into the ./servers/ folder) where the docker-compose.yml
  2. docker-compose up
  3. In the web browser hit you're docker instance on port 3000 ex: http://localhost:3000 should show you a basic test page that has the register/login form elements. Note use

The Server

What it Does

In this case the server is several docker instances.

  1. The node web app running that has Superlogin auth routes and renders the React U.I. built in the ./servers/app/client folder.
  2. CouchDB is run another docker instance
  3. Redis is also run in a docker instance which handles superlogin auth session state.

What's Different with the CouchDB Configuration

This may be specific to "my" use-case, but I made certain changes to the default couchdb configuration server/config/couchdb/local.ini which help to enable this scenario work (and be secure).

  1. Security: set require_valid_user = true which doesn't allow any access to the couchdb database without a valid auth token. Auth tokens are granted through the superlogin portion of the node webapp.
  2. Enabled CORS.

To allow the site to work we need to enable the proper CORS. The server/config/couchdb/local.ini file has already been updated. This configuration was changed by pouchdb/add-cors-to-couchdb so you can review how this tool work to see what changes it makes to the default config to enable CORS support.

Server Setup

The server is composed of 3 docker containers.

  1. The nodejs web app. This is is serving two purposes.
  1. To host the static client reactjs front-end client which uses the
  2. Superlogin auth api's to complete user registration/login/etc
  1. The second is the CouchDB server itself. Once a user has registered and logged in with SuperLogin they can then use the auth token to access their couchdb database...

  2. The third is a Redis database that the SuperLogin uses inside the node/web app to maintain user sessions.

DEBUG:

If you need to snoop around inside the container docker-compose ps to list the images running and then you can use docker exec -i -t <docker container name> /bin/bash to get into a container and snoop around.

The Client

Client Setup

The client is a simple static site. To get it running (but there are a few steps):

Pre-recs:

  1. Get the latest version of JSPM npm install -g jspm@beta

Now setup the client project.

  1. Once you have the Server Setup
  2. Update you're hosts file so that couchdb will resolve to the IP address of the docker machine hosting couchdb. If you're using docker-machine try this docker-machine ip default

Then edit you're hosts file (on linux/mac edit the /etc/hosts file to include the following

But the sample is slow to load...

For better local dev performance, if you want JSPM to bundle the JS and load faster try running

cd ./server/app/client && jspm bundle app -wid (and keep it running)

This will watch for changes to the client js, rebuild the build.js file whenever you make changes to the project. When you reload the page it's much faster...

I ran into an issue where the redis database could not write to the ./server/data/redis/ folder which wouldn't allow sessions to be stored across server reboots.

From the root of the project try running these commands to allow the container to write to the mapped docker volume defined in docker-compose.yaml.

mkdir -p ./server/data/redis
chmod a+x ./server/data/redis

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published