All Projects → nahidulhasan → Laravel Jwt

nahidulhasan / Laravel Jwt

Laravel with JWT Authentication for API development

Projects that are alternatives of or similar to Laravel Jwt

Laravel Api Boilerplate
A Boilerplate Project For Laravel API's (NOT MAINTAINED)
Stars: ✭ 113 (+264.52%)
Mutual labels:  api, laravel, jwt-authentication, jwt-token, jwt-auth
Laravel Vue Starter
Well Documented Laravel Starter App From Development to Production. For Full Blown RESTFUL API and SPA with Beautiful UI Using Buefy / ElementUi For Reusable Vue Components
Stars: ✭ 76 (+145.16%)
Mutual labels:  api, laravel, jwt-authentication, jwt-token
Laravel admin api
基于laravel5.5开发的基础后台管理脚手架, RBAC权限控制; 接口基于dingo/api和tymon/jwt, 可在此基础上完成你的laravel项目
Stars: ✭ 59 (+90.32%)
Mutual labels:  api, laravel, jwt-auth
Node Express Mongoose Passport Jwt Rest Api Auth
Node, express, mongoose, passport and JWT REST API authentication example
Stars: ✭ 146 (+370.97%)
Mutual labels:  api, jwt-authentication, jwt-token
MyAPI
A template to create awesome APIs easily ⚡️
Stars: ✭ 117 (+277.42%)
Mutual labels:  jwt-token, jwt-authentication, jwt-auth
Jose2go
Golang (GO) implementation of Javascript Object Signing and Encryption specification
Stars: ✭ 150 (+383.87%)
Mutual labels:  jwt-authentication, jwt-token, jwt-auth
Laravel Jwt
Dead simple, plug and play JWT API Authentication for Laravel (5.4+)
Stars: ✭ 225 (+625.81%)
Mutual labels:  laravel, jwt-authentication, jwt-auth
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 (+551.61%)
Mutual labels:  jwt-authentication, jwt-token, jwt-auth
spring-boot-login-example
Spring Boot Login and Registration example with MySQL, JWT, Rest Api - Spring Boot Spring Security Login example
Stars: ✭ 50 (+61.29%)
Mutual labels:  jwt-token, jwt-authentication, jwt-auth
NodeScalableArchitecture
A Scalable Node Architecture/Server. This repository contains a complete implementation of writing scalable nodejs server/architecture on my medium blog.
Stars: ✭ 62 (+100%)
Mutual labels:  jwt-token, jwt-authentication, jwt-auth
Go Book Store Api
Go Sample project to understand Mysql CRUD operation with best practises Includes logging, JWT, Swagger and Transactions
Stars: ✭ 18 (-41.94%)
Mutual labels:  api, jwt-authentication, jwt-token
React Login
A client side implementation of authentication using react.js for my blog on medium. This is the second part of my previous blog on how to implement scalable node.js server.
Stars: ✭ 105 (+238.71%)
Mutual labels:  jwt-authentication, jwt-token, jwt-auth
Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (+929.03%)
Mutual labels:  laravel, jwt-authentication, jwt-auth
Quasar-JWT
Quasar - JWT Authentication Starter Kit
Stars: ✭ 38 (+22.58%)
Mutual labels:  jwt-token, jwt-authentication, jwt-auth
API-Authentication-NodeJs
API Authentication using JWT's (JSON Web Tokens). Plug n Play inside any app which requires authentication. NodeJs Express MongoDB & Redis.
Stars: ✭ 162 (+422.58%)
Mutual labels:  jwt-token, jwt-authentication, jwt-auth
Jwt
Go JWT signing, verifying and validating
Stars: ✭ 394 (+1170.97%)
Mutual labels:  jwt-authentication, jwt-token, jwt-auth
Laravel Orion
The simplest way to create REST API with Laravel
Stars: ✭ 481 (+1451.61%)
Mutual labels:  api, laravel
Smartwiki
因个人精力有限,不在维护此项目,推荐用MinDoc代替
Stars: ✭ 486 (+1467.74%)
Mutual labels:  api, laravel
Cms
Decoupled CMS for any Laravel app, gain control of: pages, blogs, galleries, events, images, custom modules and more.
Stars: ✭ 498 (+1506.45%)
Mutual labels:  api, laravel
Springboot Jwt Demo
这是一个使用了springboot+springSecurity+jwt实现的基于token的权限管理的一个demo
Stars: ✭ 505 (+1529.03%)
Mutual labels:  jwt-token, jwt-auth

Laravel with JWT Authentication

Basically this is a starter kit for you to integrate Laravel with JWT Authentication

Quick Start

  • Clone this repo or download it's release archive and extract it somewhere

  • You may delete .git folder if you get this code via git clone

  • Run composer install

  • Configure your .env file for authenticating via database

  • Run docker-compose build

  • Run docker-compose up -d

  • Run the following command to populate database tables.

     $ docker-compose exec php php artisan migrate
    
  • Visit localhost:9007

Note:

  • You can now use:

  • POST /api/register –> Create user

    {
    	"name" : "Test User ",
    	"email" : "[email protected]",
    	"password" : "secret",
    	"password_confirmation" : "secret"
    
    }
    
    
  • POST /api/authenticate –> with email and password, obtain a JWT token

  • GET /api/user –> Get user info

And remember, JWT requires you to provide the token as a header.

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].