0.12.0 • Published 2 days ago

@raystack/frontier v0.12.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 days ago

@raystack/frontier

Frontier JS SDK allows you to implement authentication in your React application quickly using Magic links and social sign-in. It also allows you to access the SignIn, SignUp, user profile, Workspace creation, Workspace Profile etc. components.

Here is a quick guide on getting started with @raystack/frontier package.

Step 1 - Create Instance

Get Frontier URL by instantiating Frontier instance .

Step 2 - Install package

Install @raystack/frontier library

npm i --save @raystack/frontier
OR
yarn add @raystack/frontier

Step 3 - Configure Provider and use Frontier Components

Frontier comes with react context which serves as Provider component for the application

import {
  FrontierProvider,
  Frontier,
  useFrontier
} from '@raystack/frontier/react';

const App = () => {
  return (
    <FrontierProvider
      config={{
        endpoint: 'http://localhost:3000',
        redirectLogin: window.location.origin,
        redirectSignup: window.location.origin,
        redirectMagicLinkVerify: window.location.origin
      }}
    >
      <SignIn />
    </FrontierProvider>
  );
};

const Profile = () => {
  const { user } = useFrontier();
  if (user) {
    return <div>{user.email}</div>;
  }
  return null;
};
0.12.0

2 days ago

0.11.3

6 days ago

0.11.2

7 days ago

0.11.0

9 days ago

0.11.1

9 days ago

0.10.0

12 days ago

0.9.3

15 days ago

0.9.2

16 days ago

0.9.1

23 days ago

0.9.0

1 month ago

0.8.42

1 month ago

0.8.41

1 month ago

0.8.40

1 month ago

0.8.39

1 month ago

0.8.38

1 month ago

0.8.37

1 month ago

0.8.36

2 months ago

0.8.35

2 months ago

0.8.34

2 months ago

0.8.33

2 months ago

0.8.32

2 months ago

0.8.31

2 months ago

0.8.30

2 months ago

0.8.29

3 months ago

0.8.27

3 months ago

0.8.28

3 months ago

0.8.26

3 months ago

0.8.25

3 months ago

0.8.24

3 months ago

0.8.23

3 months ago

0.8.22

3 months ago

0.8.21

4 months ago

0.8.20

4 months ago

0.8.19

4 months ago

0.8.18

4 months ago

0.8.17

4 months ago

0.8.15

4 months ago

0.8.14

4 months ago

0.8.11

5 months ago

0.8.10

5 months ago

0.8.9

5 months ago

0.8.8

5 months ago

0.8.7

5 months ago

0.8.6

5 months ago

0.8.5

5 months ago

0.8.4

5 months ago

0.8.3

5 months ago

0.8.2

5 months ago

0.8.1

6 months ago

0.8.0

6 months ago

0.7.24

6 months ago

0.7.23

6 months ago

0.7.22

6 months ago

0.7.21

7 months ago

0.7.20

7 months ago

0.7.19

7 months ago

0.7.18

7 months ago

0.7.17

7 months ago

0.7.16

7 months ago

0.7.15

7 months ago

0.7.14

7 months ago

0.7.13

7 months ago

0.7.12

7 months ago

0.7.10

7 months ago

0.7.11

7 months ago

0.7.8

7 months ago

0.7.9

7 months ago

0.7.7

8 months ago

0.0.12

8 months ago

0.0.11

8 months ago

0.0.10

8 months ago

0.0.9

8 months ago

0.0.8

8 months ago

0.0.7

8 months ago

0.0.6

8 months ago

0.0.5

8 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

10 months ago

0.0.1

10 months ago

0.0.0

10 months ago