https://github.com/bezkoder/react-refresh-token-hooks
React Hooks - refresh token with JWT and Axios Interceptors example
https://github.com/bezkoder/react-refresh-token-hooks
authentication authorization hooks jwt jwt-authentication react react-hooks reactjs refresh-token token-based-authentication
Last synced: 8 days ago
JSON representation
React Hooks - refresh token with JWT and Axios Interceptors example
- Host: GitHub
- URL: https://github.com/bezkoder/react-refresh-token-hooks
- Owner: bezkoder
- Created: 2021-07-27T04:47:42.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-07-28T05:13:35.000Z (over 3 years ago)
- Last Synced: 2025-03-28T10:47:34.163Z (25 days ago)
- Topics: authentication, authorization, hooks, jwt, jwt-authentication, react, react-hooks, reactjs, refresh-token, token-based-authentication
- Language: JavaScript
- Homepage:
- Size: 411 KB
- Stars: 44
- Watchers: 2
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## React Hooks Refresh Token with JWT and Axios Interceptors example

For more detail, please visit:
> [React Refresh Token with JWT and Axios Interceptors](https://www.bezkoder.com/react-refresh-token/)> [React Hooks: JWT Authentication & Authorization (without Redux) example](https://bezkoder.com/react-hooks-jwt-auth/)
> [React Redux Login, Logout, Registration example with Hooks](https://bezkoder.com/react-hooks-redux-login-registration-example/)
> [React (Components) JWT Authentication & Authorization example](https://bezkoder.com/react-jwt-auth/)
Fullstack (JWT Authentication & Authorization example):
> [React + Spring Boot](https://bezkoder.com/spring-boot-react-jwt-auth/)> [React + Node.js Express](https://bezkoder.com/react-express-authentication-jwt/)
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
### Set port
.env
```
PORT=8081
```## Note:
Open `src/services/api.js` and modify `config.headers` for appropriate back-end (found in the tutorial).```js
instance.interceptors.request.use(
(config) => {
const token = TokenService.getLocalAccessToken();
if (token) {
// config.headers["Authorization"] = 'Bearer ' + token; // for Spring Boot back-end
config.headers["x-access-token"] = token; // for Node.js Express back-end
}
return config;
},
(error) => {
return Promise.reject(error);
}
);
```### Project setup
In the project directory, you can run:
```
npm install
# or
yarn install
```or
### Compiles and hot-reloads for development
```
npm start
# or
yarn start
```Open [http://localhost:8081](http://localhost:8081) to view it in the browser.
The page will reload if you make edits.
### Related Posts
> [In-depth Introduction to JWT-JSON Web Token](https://bezkoder.com/jwt-json-web-token/)> [React CRUD example using Hooks](https://bezkoder.com/react-hooks-crud-axios-api/)
> [React Pagination using Hooks example](https://bezkoder.com/react-pagination-hooks/)
> [React Hooks File Upload example](https://bezkoder.com/react-hooks-file-upload/)
Fullstack with Node.js Express:
> [React.js + Node.js Express + MySQL](https://bezkoder.com/react-node-express-mysql/)> [React.js + Node.js Express + PostgreSQL](https://bezkoder.com/react-node-express-postgresql/)
> [React.js + Node.js Express + MongoDB](https://bezkoder.com/react-node-express-mongodb-mern-stack/)
Fullstack with Spring Boot:
> [React.js + Spring Boot + MySQL](https://bezkoder.com/react-spring-boot-crud/)> [React.js + Spring Boot + PostgreSQL](https://bezkoder.com/spring-boot-react-postgresql/)
> [React.js + Spring Boot + MongoDB](https://bezkoder.com/react-spring-boot-mongodb/)
Fullstack with Django:
> [React.js Hooks + Django Rest Framework](https://bezkoder.com/django-react-hooks/)Serverless:
> [React Hooks Firebase Realtime Database: CRUD App ](https://bezkoder.com/react-firebase-hooks-crud/)> [React Hooks Firestore example: CRUD App](https://bezkoder.com/react-hooks-firestore/)
Integration (run back-end & front-end on same server/port)
> [Integrate React with Spring Boot](https://bezkoder.com/integrate-reactjs-spring-boot/)> [Integrate React with Node.js Express](https://bezkoder.com/integrate-react-express-same-server-port/)