Skip to content

Commit b247222

Browse files
committed
rename: authlocal org to e280
1 parent 4165b4b commit b247222

File tree

4 files changed

+898
-456
lines changed

4 files changed

+898
-456
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# `@authlocal/authlocal` changelog
2+
# `@e280/authlocal` changelog
33
- 🟥 breaking change
44
- 🔶 deprecation or possible breaking change
55
- 🍏 harmless addition, fix, or enhancement

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
1. **Webdev install technique**
3535
Install the package into your project:
3636
```sh
37-
npm install @authlocal/authlocal
37+
npm install @e280/authlocal
3838
```
3939
Write this in your app's js entrypoint (like `main.ts`):
4040
```ts
41-
import {install} from "@authlocal/authlocal"
41+
import {install} from "@e280/authlocal"
4242
const auth = await install()
4343
auth.on(login => console.log("auth", login))
4444
```
@@ -59,7 +59,7 @@ Use this technique if you want to make your own UI, and don't want to load any o
5959

6060
1. Create the Auth object manually, and trigger the initial load from storage:
6161
```ts
62-
import {Auth} from "@authlocal/authlocal"
62+
import {Auth} from "@e280/authlocal"
6363

6464
const auth = new Auth()
6565
await auth.loadLogin()
@@ -161,7 +161,7 @@ If the user clicks the sigil, the full thumbprint is copied to the clipboard.
161161

162162
### Sign a claim
163163
```js
164-
import {Future} from "@authlocal/authlocal"
164+
import {Future} from "@e280/authlocal"
165165

166166
const claimToken = await login.signClaim({
167167

@@ -175,7 +175,7 @@ const claimToken = await login.signClaim({
175175

176176
### Verify a claim
177177
```js
178-
import {verifyClaim} from "@authlocal/authlocal"
178+
import {verifyClaim} from "@e280/authlocal"
179179

180180
const {claim, proof} = await verifyClaim({
181181
claimToken,
@@ -245,7 +245,7 @@ Your server verifies the proof, then the claim — proving the user authorized t
245245

246246
#### Thumbprint conversions
247247
```ts
248-
import {Thumbprint} from "@authlocal/authlocal"
248+
import {Thumbprint} from "@e280/authlocal"
249249
```
250250
- **id to thumbprint**
251251
```ts

0 commit comments

Comments
 (0)