DEPRECATED - Migrated to https://github.com/mozilla/fxa
fxa
Перейти к файлу
Phil Booth c1307bd38d
fix(tests): send valid metrics context params in reauth test
2019-02-26 10:29:34 +00:00
client chore(metrics): reinstate entrypoint to metricsContext payload 2019-02-25 11:45:05 +00:00
node feat(client): Switch from p-promise to es6-promise library (#263) r=@vladikoff 2017-11-28 16:59:25 +00:00
tasks source-1.0.5 (#282) 2018-07-27 16:25:35 -04:00
tests fix(tests): send valid metrics context params in reauth test 2019-02-26 10:29:34 +00:00
.eslintrc chore(lint): switch from JSHint to ESLint 2015-06-15 09:22:03 -07:00
.gitignore feat(session): support account delete with session token (#275), r=@philbooth 2018-04-25 09:56:29 -04:00
.jscsrc fix(deps): update dev dependencies 2015-07-29 11:44:04 -04:00
.travis.yml feat(node): update to node 8 (#276) 2018-05-01 18:26:00 -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 fix(build): build process clean up 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 chore(release): Merge source-1.0.7 into master (#295) r=@vladikoff 2019-01-16 08:13:40 +00: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.