From d7dc7b0753ebb975253d7e2bc1999bba342de512 Mon Sep 17 00:00:00 2001 From: ndom91 Date: Tue, 27 Oct 2020 15:39:30 +0100 Subject: [PATCH] add: ndom91 dev.to tutorial --- www/docs/tutorials.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/www/docs/tutorials.md b/www/docs/tutorials.md index 009a7445f0..4de363b372 100644 --- a/www/docs/tutorials.md +++ b/www/docs/tutorials.md @@ -41,7 +41,7 @@ A tutorial by Arunoda Susirpiala. Checkout [GetStarted](https://getstarted.sh/) ### [Add auth support to a Next.js app with a custom backend](https://arunoda.me/blog/add-auth-support-to-a-next-js-app-with-a-custom-backend) -A tutorial by Arunoda Susirpiala. +A tutorial by Arunoda Susirpiala. ### [How to Configure Azure AD B2C Authentication with Next.js](https://benjaminwfox.com/blog/tech/how-to-configure-azure-b2c-with-nextjs) @@ -55,10 +55,14 @@ Next.js supports multiple patterns for authentication, each designed for differe A video tutorial by Xiaoru Li from Prisma. - ### [Passwordless Authentication with Next.js, Prisma, and next-auth](https://dev.to/prisma/passwordless-authentication-with-next-js-prisma-and-next-auth-5g8g) +### [Passwordless Authentication with Next.js, Prisma, and next-auth](https://dev.to/prisma/passwordless-authentication-with-next-js-prisma-and-next-auth-5g8g) In this post, you'll learn how to add passwordless authentication to your Next.js app using Prisma and next-auth. By the end of this tutorial, your users will be able to log in to your app with either their GitHub account or a Slack-styled magic link sent right to their Email inbox. By Xiaoru Li. ### [Fullstack Authentication Example with Next.js and NextAuth.js](https://github.com/prisma/prisma-examples/tree/latest/typescript/rest-nextjs-api-routes-auth) This example shows how to implement a fullstack app in TypeScript with Next.js using React (frontend), Next.js API routes and Prisma Client (backend). It also demonstrates how to implement authentication using NextAuth.js. By Nikolas Burk at Prisma. + +### [Adding Authentication to an existing Next.js Application in no time!](https://dev.to/ndom91/adding-authentication-to-an-existing-serverless-next-js-app-in-no-time-with-nextauth-js-192h) + +This `dev.to` tutorial walks one through adding NextAuth.js to an existing project. Including setting up the OAuth client id and secret, adding the API routes for authentication, protecting pages and api routes behind that authentication, etc.