All Projects → adnanrahic → Securing Restful Apis With Jwt

adnanrahic / Securing Restful Apis With Jwt

How to secure a Nodejs RESTful CRUD API using JSON web tokens?

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Securing Restful Apis With Jwt

Express Graphql Mongodb Boilerplate
A boilerplate for Node.js apps / GraphQL-API / Authentication from scratch - express, graphql - (graphql compose), mongodb (mongoose).
Stars: ✭ 288 (-4.32%)
Mutual labels:  api, mongoose, mongodb, express, authentication, authorization
Express Mongodb Rest Api Boilerplate
A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).
Stars: ✭ 153 (-49.17%)
Mutual labels:  api, mongodb, express, authentication, jwt, authorization
Nodejs Restful Api
How to create a RESTful CRUD API using Nodejs?
Stars: ✭ 285 (-5.32%)
Mutual labels:  api, mongoose, database, mongodb, express, tutorial
Mern Boilerplate
Fullstack boilerplate with React, Redux, Express, Mongoose, Passport Local, JWT, Facebook and Google OAuth out of the box.
Stars: ✭ 112 (-62.79%)
Mutual labels:  mongoose, mongodb, express, authentication, jwt, authorization
Appy Backend
A user system to bootstrap your app.
Stars: ✭ 96 (-68.11%)
Mutual labels:  api, mongoose, mongodb, authentication, authorization
Node Express Mongodb Jwt Rest Api Skeleton
This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API). Demo of frontend in VueJS here: https://github.com/davellanedam/vue-skeleton-mvp
Stars: ✭ 603 (+100.33%)
Mutual labels:  api, mongoose, mongodb, express, jwt
Jwt Node Vue
Repositório responsável pelo primeiro projeto da série de vídeos: Coding Stuff.
Stars: ✭ 29 (-90.37%)
Mutual labels:  mongoose, mongodb, express, jwt
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 (+1.99%)
Mutual labels:  mongoose, mongodb, express, jwt
Node Express Mongoose Passport Jwt Rest Api Auth
Node, express, mongoose, passport and JWT REST API authentication example
Stars: ✭ 146 (-51.5%)
Mutual labels:  api, mongoose, express, jwt
Spring Security React Ant Design Polls App
Full Stack Polls App built using Spring Boot, Spring Security, JWT, React, and Ant Design
Stars: ✭ 1,336 (+343.85%)
Mutual labels:  database, authentication, jwt, authorization
Angular Full Stack
Angular Full Stack project built using Angular, Express, Mongoose and Node. Whole stack in TypeScript.
Stars: ✭ 1,261 (+318.94%)
Mutual labels:  mongoose, mongodb, express, jwt
Node Express Mongo Api
Starter project for a REST API with Node.js, Express & MongoDB 🔋
Stars: ✭ 148 (-50.83%)
Mutual labels:  mongoose, mongodb, express, tutorial
Node Auth
基于 Node Express Mongoose 实现的用户注册/登陆权限验证
Stars: ✭ 10 (-96.68%)
Mutual labels:  mongoose, mongodb, express, authorization
Spruce
A social networking platform made using Node.js and MongoDB
Stars: ✭ 399 (+32.56%)
Mutual labels:  api, mongoose, mongodb, express
Express Mongoose Es6 Rest Api
💥 A boilerplate application for building RESTful APIs Microservice in Node.js using express and mongoose in ES6 with code coverage and JsonWebToken Authentication
Stars: ✭ 2,811 (+833.89%)
Mutual labels:  mongoose, mongodb, express, authentication
Blog Service
blog service @nestjs
Stars: ✭ 188 (-37.54%)
Mutual labels:  api, mongoose, mongodb, express
Spark Pac4j
Security library for Sparkjava: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 154 (-48.84%)
Mutual labels:  mongodb, authentication, jwt, authorization
Spring Security Pac4j
pac4j security library for Spring Security: OAuth, CAS, SAML, OpenID Connect, LDAP, JWT...
Stars: ✭ 231 (-23.26%)
Mutual labels:  mongodb, authentication, jwt, authorization
Feathers Vue
A boiler plate template using Feathers with Email Verification, Vue 2 with Server Side Rendering, stylus, scss, jade, babel, webpack, ES 6-8, login form, user authorization, and SEO
Stars: ✭ 195 (-35.22%)
Mutual labels:  mongoose, express, authentication, authorization
Jianshu
仿简书nx+nodejs+nestjs6+express+mongodb+angular8+爬虫
Stars: ✭ 296 (-1.66%)
Mutual labels:  api, mongoose, mongodb, express

Securing RESTful APIs with JWT

How to secure a Nodejs RESTful CRUD API using JSON web tokens?

This tutorial will demo how to use JWT with an existing bare bones API using mongodb as the database.

It consist of a User model and controller. The model defines the data, and the controller will contain all the business logic needed to interact with the database.

It has a db file which will be used to connect the app to the database, and an app file used for bootstrapping the application itself.

The server file is used to spin up the server and tells the app to listen on a specific port.

The auth folder contains the configuration for registering and logging users in, signing and verifying tokens.

Follow the tutorial for this repository at https://medium.freecodecamp.org/securing-node-js-restful-apis-with-json-web-tokens-9f811a92bb52

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