https://github.com/azrubael/230103-jwt-react
A training project of login with a JWT token
https://github.com/azrubael/230103-jwt-react
Last synced: 11 months ago
JSON representation
A training project of login with a JWT token
- Host: GitHub
- URL: https://github.com/azrubael/230103-jwt-react
- Owner: Azrubael
- Created: 2023-01-22T10:15:56.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-22T10:17:53.000Z (over 3 years ago)
- Last Synced: 2025-04-09T17:59:54.038Z (about 1 year ago)
- Language: JavaScript
- Size: 553 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A training project for a complicated implementation of a login using a JWT token.
To start the project, you need to start the server in a separate execution environment and run the client in a separate environment.
The server is developed and tested using the MongoDB database.
The client is developed with a standard template:
$ npx create-react-app client --template typescript
```
To start server
./server$ npm run dev
The server will be started at 'http://localhost:9009'
```
To start client
./client$ npm start
The client will be automatically launched in the default browser at 'http://localhost:3000'