1
1
## React Hooks: JWT Authentication (without Redux) example
2
2
3
3
For more detail, please visit:
4
+ > [ React Hooks: JWT Authentication & Authorization (without Redux) example] ( https://bezkoder.com/react-hooks-jwt-auth/ )
4
5
5
- > [ React Hooks: JWT Authentication & Authorization example] ( https://bezkoder.com/react-hooks-jwt-auth/ )
6
+ > [ React Redux Login, Logout, Registration example with Hooks] ( https://bezkoder.com/react-hooks-redux-login-registration-example/ )
7
+
8
+ > [ React (Components) JWT Authentication & Authorization example] ( https://bezkoder.com/react-jwt-auth/ )
9
+
10
+ Fullstack (JWT Authentication & Authorization example):
11
+ > [ React + Spring Boot] ( https://bezkoder.com/spring-boot-react-jwt-auth/ )
12
+
13
+ > [ React + Node.js Express] ( https://bezkoder.com/react-express-authentication-jwt/ )
6
14
7
15
This project was bootstrapped with [ Create React App] ( https://github.com/facebook/create-react-app ) .
8
16
@@ -12,7 +20,7 @@ This project was bootstrapped with [Create React App](https://github.com/faceboo
12
20
PORT=8081
13
21
```
14
22
15
- ## Note:
23
+ ### Note:
16
24
Open ` src/services/auth-header.js ` and modify ` return ` statement for appropriate back-end (found in the tutorial).
17
25
18
26
``` js
@@ -28,7 +36,7 @@ export default function authHeader() {
28
36
}
29
37
```
30
38
31
- ## Project setup
39
+ ### Project setup
32
40
33
41
In the project directory, you can run:
34
42
@@ -51,3 +59,39 @@ yarn start
51
59
Open [ http://localhost:8081 ] ( http://localhost:8081 ) to view it in the browser.
52
60
53
61
The page will reload if you make edits.
62
+
63
+ ### Related Posts
64
+ > [ In-depth Introduction to JWT-JSON Web Token] ( https://bezkoder.com/jwt-json-web-token/ )
65
+
66
+ > [ React CRUD example using Hooks] ( https://bezkoder.com/react-hooks-crud-axios-api/ )
67
+
68
+ > [ React Pagination using Hooks example] ( https://bezkoder.com/react-pagination-hooks/ )
69
+
70
+ > [ React Hooks File Upload example] ( https://bezkoder.com/react-hooks-file-upload/ )
71
+
72
+ Fullstack with Node.js Express:
73
+ > [ React.js + Node.js Express + MySQL] ( https://bezkoder.com/react-node-express-mysql/ )
74
+
75
+ > [ React.js + Node.js Express + PostgreSQL] ( https://bezkoder.com/react-node-express-postgresql/ )
76
+
77
+ > [ React.js + Node.js Express + MongoDB] ( https://bezkoder.com/react-node-express-mongodb-mern-stack/ )
78
+
79
+ Fullstack with Spring Boot:
80
+ > [ React.js + Spring Boot + MySQL] ( https://bezkoder.com/react-spring-boot-crud/ )
81
+
82
+ > [ React.js + Spring Boot + PostgreSQL] ( https://bezkoder.com/spring-boot-react-postgresql/ )
83
+
84
+ > [ React.js + Spring Boot + MongoDB] ( https://bezkoder.com/react-spring-boot-mongodb/ )
85
+
86
+ Fullstack with Django:
87
+ > [ React.js Hooks + Django Rest Framework] ( https://bezkoder.com/django-react-hooks/ )
88
+
89
+ Serverless:
90
+ > [ React Hooks Firebase Realtime Database: CRUD App ] ( https://bezkoder.com/react-firebase-hooks-crud/ )
91
+
92
+ > [ React Hooks Firestore example: CRUD App] ( https://bezkoder.com/react-hooks-firestore/ )
93
+
94
+ Integration (run back-end & front-end on same server/port)
95
+ > [ Integrate React with Spring Boot] ( https://bezkoder.com/integrate-reactjs-spring-boot/ )
96
+
97
+ > [ Integrate React with Node.js Express] ( https://bezkoder.com/integrate-react-express-same-server-port/ )
0 commit comments