Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nisaacson/account
Provide a skeleton interface for user account registration and login
https://github.com/nisaacson/account
Last synced: about 1 month ago
JSON representation
Provide a skeleton interface for user account registration and login
- Host: GitHub
- URL: https://github.com/nisaacson/account
- Owner: nisaacson
- Created: 2013-04-30T18:47:17.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-05-01T04:08:34.000Z (over 11 years ago)
- Last Synced: 2024-10-06T11:18:43.853Z (about 1 month ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Account
Provide a skeleton interface for user account registration and login[![Build Status](https://travis-ci.org/nisaacson/account.png?branch=master)](https://travis-ci.org/nisaacson/account)
[![Dependency Status Status](https://david-dm.org/nisaacson/account.png)](https://david-dm.org/nisaacson/account)# Installation
```bash
npm install -S accounts
```# Usage
The accounts module is an just an interface that is intended to be implemented by modules with specific backend code. See the [account-couch](https://github.com/nisaacson/account-couch) module for an exampleAll interfaces must implement all methods in index.js. These methods are as follows
* `login`
* `register`
* `serializeUser`
* `deserializeUser`
* `removeUser`