0.5.11 β€’ Published 2 months ago

@nopwdio/sdk-js v0.5.11

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Nopwd javascript sdk

To all who come here... welcome!

This is the repo for our javascript sdk. This repo contains all the source code we use to build our js library.

What is it?

Nopwd is a set of web components and API to authenticate your users using email link or Passkeys authentication.

Nopwd is still in beta. API and components may change and not production ready at this time.

Check out our demo website to see it live :)

Why?

Authentication is used to be hard for users but also for developers. At Nopwd, we work hard to keep our API simple and minimal πŸ’†. Using Nopwd, you won’t have to:

  • give us money (but you can still support us πŸ˜…)
  • register your app or website
  • manage any API Key or secrets

How to install it?

You can load our web components via CDN or by installing it locally using package manager such as NPM.

using CDN

<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@nopwdio/sdk-js@latest/cdn/components/np-email-auth.js"
></script>

using NPM

npm i @nopwdio/sdk-js@latest

and then:

// to import magic link authentication button
import "@nopwdio/sdk-js@latest/dist/components/np-email-auth.js";

// to import Passkeys registration button
import "@nopwdio/sdk-js@latest/dist/components/np-passkey-register.js";

// to import Passkeys authentication input field
import "@nopwdio/sdk-js@latest/dist/components/np-passkey-conditional.js";

How to add magic-link authentication?

<np-email-auth></np-email-auth>

<script>
  const button = document.querySelector("np-email-auth");
  button.email = "...";

  // ...and retrieve the access token by listening the "np:login" event. You're done!
  button.addEventListner("np:login", (e) => {
    // Your are authenticated πŸŽ‰
    const { expires_at, token } = e.detail;
  });
</script>

How to add Passkeys authentication?

<np-passkey-conditional></np-passkey-conditional>

<script>
  const input = document.querySelector("np-passkey-conditional");

  input.addEventListner("np:login", (e) => {
    // Your are authenticated πŸŽ‰
    const { expires_at, token } = e.detail;
  });
</script>

New contributors welcome!

You can create a new Issue puts a problem on our radar or a pull request!

What's next?

Read the full documentation

0.5.11

2 months ago

0.5.10

2 months ago

0.5.9

2 months ago

0.5.8

2 months ago

0.5.7

2 months ago

0.5.6

2 months ago

0.5.5

2 months ago

0.5.4

3 months ago

0.4.37

3 months ago

0.4.36

3 months ago

0.5.3

3 months ago

0.5.0

3 months ago

0.5.2

3 months ago

0.5.1

3 months ago

0.4.35

3 months ago

0.4.31

3 months ago

0.4.32

3 months ago

0.4.30

3 months ago

0.4.33

3 months ago

0.4.34

3 months ago

0.4.28

3 months ago

0.4.29

3 months ago

0.4.26

3 months ago

0.4.27

3 months ago

0.4.24

3 months ago

0.4.25

3 months ago

0.4.23

3 months ago

0.4.20

3 months ago

0.4.21

3 months ago

0.4.22

3 months ago

0.4.19

3 months ago

0.4.17

3 months ago

0.4.18

3 months ago

0.4.15

3 months ago

0.4.16

3 months ago

0.4.14

3 months ago

0.4.13

4 months ago

0.4.11

4 months ago

0.4.12

4 months ago

0.4.10

4 months ago

0.4.9

4 months ago

0.4.8

4 months ago

0.4.7

4 months ago

0.4.6

4 months ago

0.4.5

4 months ago

0.4.4

5 months ago

0.4.3

5 months ago

0.3.9

5 months ago

0.3.8

5 months ago

0.4.0

5 months ago

0.3.7

5 months ago

0.3.6

5 months ago

0.3.5

5 months ago

0.3.2

5 months ago

0.3.1

5 months ago

0.3.4

5 months ago

0.3.3

5 months ago

0.3.0

5 months ago

0.2.2

6 months ago

0.2.1

6 months ago

0.2.0

6 months ago

0.1.1

6 months ago

0.1.0

6 months ago

0.0.5

7 months ago

0.0.4

7 months ago

0.0.3

7 months ago

0.0.2

7 months ago

0.0.1

7 months ago