express-jwt-pouchdb

Express-PouchDB with JSON Web Token Support.

Usage no npm install needed!

<script type="module">
  import expressJwtPouchdb from 'https://cdn.skypack.dev/express-jwt-pouchdb';
</script>

README

express-jwt-pouchdb

npm David Build Status

Express-PouchDB clone with JSON Web Token support. This is designed to mimic the couch_jwt_auth plugin for CouchDB so it can serve as a testing server. Configuration and usage matches that plugin.

Usage

Install with NPM:

npm i express-jwt-pouchdb --save

And use just like you would express-pouchdb:

var express = require("express"),
    app     = express(),
    PouchDB = require("pouchdb");

app.use("/db", require("express-jwt-pouchdb")(PouchDB));

app.listen(3000);