diff options
author | Matthew Miller <matthew@millerti.me> | 2020-05-26 11:23:30 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2020-05-26 11:23:30 -0700 |
commit | 99bfef338ca068be1f734bc6ca784e12c8df7d7a (patch) | |
tree | b6ebfa742c6266843562c1d43a51b7df2aa7c799 /packages/browser/README.md | |
parent | 2ca49ecadf793126b8ee02bcd79a8689a7c20866 (diff) |
Rename WebAuthntine to SimpleWebAuthn
Diffstat (limited to 'packages/browser/README.md')
-rw-r--r-- | packages/browser/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/browser/README.md b/packages/browser/README.md index df22dbd..2135527 100644 --- a/packages/browser/README.md +++ b/packages/browser/README.md @@ -1,9 +1,9 @@ <!-- omit in toc --> -# @webauthntine/browser +# @simplewebauthn/browser  -[](https://www.npmjs.com/package/@webauthntine/browser) +[](https://www.npmjs.com/package/@simplewebauthn/browser)  - [Installation](#installation) @@ -15,13 +15,13 @@ This package is available on **npm**: ```sh -npm install @webauthntine/browser +npm install @simplewebauthn/browser ``` It can then be imported into a project as usual: ```js -import WebAuthntineBrowser from '@webauthntine/browser'; +import SimpleWebAuthnBrowser from '@simplewebauthn/browser'; ``` ### UMD @@ -29,10 +29,10 @@ import WebAuthntineBrowser from '@webauthntine/browser'; This package can also be installed via **unpkg** by including the following script in your page's `<head>` element: ```html -<script src="https://unpkg.com/@webauthntine/browser/dist/webauthntine-browser.min.js"></script> +<script src="https://unpkg.com/@simplewebauthn/browser/dist/simplewebauthn-browser.min.js"></script> ``` -The library's methods will be available on the global `WebAuthntineBrowser` object. +The library's methods will be available on the global `SimpleWebAuthnBrowser` object. ## Usage - Coming Soon |