pouchdb-authentication

User authentication plugin for PouchDB and CouchDB.

  • 所有者: pouchdb-community/pouchdb-authentication
  • 平台:
  • 许可证: Apache License 2.0
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

PouchDB Authentication

Build Status
Greenkeeper badge
npm version

Easy user authentication for PouchDB/CouchDB.

var db = new PouchDB('http://mysite:5984/mydb', {skip_setup: true});
db.logIn('batman', 'brucewayne').then(function (batman) {
  console.log("I'm Batman.");
  return db.logOut();
});

Overview

You know what's hard? Security. You know what makes security really easy? CouchDB.

That's right, CouchDB is more than a database: it's also a RESTful web server with a built-in authentication framework. And it boasts some top-notch security features:

  • salts and hashes passwords automatically with PBKDF2
  • stores a cookie in the browser
  • refreshes the cookie every 10 minutes (default)

And best of all, CouchDB does it with good ol'-fashioned HTTP. Just open up the network tab and watch the JSON fly back and forth.

To get started, just install CouchDB, throw in a little SSL, and you've got everything you need for your site's authentication.

Project status

This plugin uses vanilla CouchDB. The goal is to give you a lightweight authentication API that doesn't require anything fancy – no additional server daemons, no third-party providers, just straight-up Pouch and Couch.

So this is more of a reference implementation than an all-in-one solution. If there's a feature missing that you need, you will probably need to write a custom server (see the CouchDB Authentication recipes section for details).

Since version 1.0.0, this plugin does support Node.js.

Using PouchDB Authentication

Changelog

PouchDB Authentication follows semantic versioning. To see a changelog with all PouchDB Authentication releases, check out the Github releases page.

Contributing

We use standard-version for release versioning along with Angular-style commit messages to automate the changelog generation. To help you make good commit messages, you are advised to install and use commitizen.

PouchDB Authentication is heavily tested, so you'll also want to check out the testing guide.

Big Thanks

Cross-browser Testing Platform and Open Source <3 Provided by Sauce Labs.

sauce labs logo

主要指标

概览
名称与所有者pouchdb-community/pouchdb-authentication
主编程语言JavaScript
编程语言JavaScript (语言数: 2)
平台
许可证Apache License 2.0
所有者活动
创建于2014-03-28 00:21:00
推送于2023-02-27 17:25:57
最后一次提交2019-05-19 00:32:34
发布数29
最新版本名称v1.1.3 (发布于 2018-05-20 01:44:44)
第一版名称v0.1.0 (发布于 )
用户参与
星数776
关注者数26
派生数118
提交数263
已启用问题?
问题数170
打开的问题数33
拉请求数51
打开的拉请求数14
关闭的拉请求数47
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?