DEPRECATED - Migrated to https://github.com/mozilla/fxa
fxa
Перейти к файлу
Shane Tomlinson 2f146354ea refactor(deps): Ditch bower, use npm for deps. 2018-02-01 17:09:46 -05:00
client feat(tokens): add verify token code support (#270) r=@vladikoff 2018-01-04 15:30:25 -05:00
node feat(client): Switch from p-promise to es6-promise library (#263) r=@vladikoff 2017-11-28 16:59:25 +00:00
tasks refactor(deps): Ditch bower, use npm for deps. 2018-02-01 17:09:46 -05:00
tests refactor(deps): Ditch bower, use npm for deps. 2018-02-01 17:09:46 -05:00
.eslintrc chore(lint): switch from JSHint to ESLint 2015-06-15 09:22:03 -07:00
.gitignore refactored Gruntfile into separate task files 2014-01-08 17:15:19 -08:00
.jscsrc fix(deps): update dev dependencies 2015-07-29 11:44:04 -04:00
.travis.yml feat(api): add deviceId to metricsContext data (#257) r=vladikoff 2017-09-07 14:59:09 -04:00
AUTHORS chore(build): Add grunt-bump and changelog 2014-05-17 00:22:21 -04:00
CHANGELOG.md source-0.1.30 2015-07-20 16:29:34 -04:00
CONTRIBUTING.md chore(lint): remove JSHint 2015-07-02 14:33:44 -07:00
Gruntfile.js feat(build): Use webpack instead of requirejs 2018-02-01 17:09:46 -05:00
LICENSE Initial commit 2013-10-29 16:39:30 -07:00
README.md chore(doc): Add Sauce test matrix. 2014-08-23 11:09:23 -07:00
package.json refactor(deps): Ditch bower, use npm for deps. 2018-02-01 17:09:46 -05:00
webpack.config.js refactor(deps): Ditch bower, use npm for deps. 2018-02-01 17:09:46 -05:00

README.md

fxa-js-client

Web client that talks to the Firefox Accounts API server

Build Status

Sauce Test Status

Download Library

Install using Bower: bower install fxa-js-client

Install using npm: npm install fxa-js-client

Usage

<script src="../build/fxa-client.js"></script>
var client = new FxAccountClient();
// Sign Up
client.signUp(email, password);
// Sign In
client.signIn(email, password);

See Library Documentation for more.

Development

See CONTRIBUTING.md for details on building, developing, and testing the library.