All Projects → farbodsalimi → react-redux-jwt-authentication-boilerplate

farbodsalimi / react-redux-jwt-authentication-boilerplate

Licence: MIT License
React-Redux JWT Authentication Boilerplate

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to react-redux-jwt-authentication-boilerplate

Nest Angular
NestJS, Angular 6, Server Side Rendering (Angular Universal), GraphQL, JWT (JSON Web Tokens) and Facebook/Twitter/Google Authentication, Mongoose, MongoDB, Webpack, TypeScript
Stars: ✭ 307 (+597.73%)
Mutual labels:  jwt, passport, jwt-authentication
Express Mongodb Rest Api Boilerplate
A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).
Stars: ✭ 153 (+247.73%)
Mutual labels:  jwt, jwt-authentication, express-js
node-express-mongo-passport-jwt-typescript
A Node.js back end web application with REST API, user JWT authentication and MongoDB data storage using TypeScript
Stars: ✭ 51 (+15.91%)
Mutual labels:  passport, jwt-authentication, express-js
Node Express Mongoose Passport Jwt Rest Api Auth
Node, express, mongoose, passport and JWT REST API authentication example
Stars: ✭ 146 (+231.82%)
Mutual labels:  jwt, passport, jwt-authentication
Mern Boilerplate
Fullstack boilerplate with React, Redux, Express, Mongoose, Passport Local, JWT, Facebook and Google OAuth out of the box.
Stars: ✭ 112 (+154.55%)
Mutual labels:  jwt, redux-thunk, passport
Jose2go
Golang (GO) implementation of Javascript Object Signing and Encryption specification
Stars: ✭ 150 (+240.91%)
Mutual labels:  jwt, jwt-authentication
Fake Api Jwt Json Server
A Fake API with JWT Authentication using json-server and jsonwebtoken
Stars: ✭ 151 (+243.18%)
Mutual labels:  jwt, jwt-authentication
Spring Webflux Security Jwt
A JWT authorization and authentication implementation with Spring Reactive Webflux, Spring Boot 2 and Spring Security 5
Stars: ✭ 190 (+331.82%)
Mutual labels:  jwt, jwt-authentication
Php Jwt
Ultra lightweight, dependency free and standalone JSON web token (JWT) library for PHP5.6 to PHP8.0. This library makes JWT a cheese.
Stars: ✭ 214 (+386.36%)
Mutual labels:  jwt, jwt-authentication
Httpie Jwt Auth
JWTAuth (JSON Web Tokens) auth plugin for HTTPie
Stars: ✭ 140 (+218.18%)
Mutual labels:  jwt, jwt-authentication
Login With
Stateless login-with microservice for OAuth
Stars: ✭ 2,301 (+5129.55%)
Mutual labels:  jwt, passport
munhasir
Sample RESTful single page web app with Go, MongoDB and VueJS. A platform for keeping diaries for those who are cautious(or paranoid).
Stars: ✭ 24 (-45.45%)
Mutual labels:  jwt, jwt-authentication
React Role Based Authorization Example
React - Role Based Authorization Example with Webpack 4
Stars: ✭ 147 (+234.09%)
Mutual labels:  jwt, jwt-authentication
React Jwt Authentication Example
React - JWT Authentication Tutorial & Example
Stars: ✭ 170 (+286.36%)
Mutual labels:  jwt, jwt-authentication
express-mongo-jwt-boilerplate
Express Mongo JsonWebToken boilerplate
Stars: ✭ 100 (+127.27%)
Mutual labels:  passport, jwt-authentication
Jwt Spring Security Jpa
Backend MVP showcasing JWT (Json Web Token) authentication with multiple login, timeout / refresh / logout (with in memory invalidation) using Spring Security & MySQL JPA.
Stars: ✭ 202 (+359.09%)
Mutual labels:  jwt, jwt-authentication
MyAPI
A template to create awesome APIs easily ⚡️
Stars: ✭ 117 (+165.91%)
Mutual labels:  jwt-authentication, express-js
ExpressJS-SocketIO-Boilerplate
📦 Simple Express.js & Socket.io Boilerplate
Stars: ✭ 31 (-29.55%)
Mutual labels:  passport, express-js
Caddy Auth Jwt
JWT Authorization Plugin for Caddy v2
Stars: ✭ 127 (+188.64%)
Mutual labels:  jwt, jwt-authentication
Jersey Jwt
Example of REST API with JWT authentication using Jersey, Jackson, Undertow, Weld, Hibernate and Arquillian.
Stars: ✭ 131 (+197.73%)
Mutual labels:  jwt, jwt-authentication

React-Redux JWT Authentication Boilerplate

What is JSON Web Token?

jwt

JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA.

Source: Introduction to JSON Web Tokens

Client

Installation

yarn install

Development

yarn start

Production

First build the project, then run the server.

yarn build

Server

Run

with node

node server/

with nodemon

nodemon server/

with PM2

pm2 start server/
pm2 monit
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].