-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Full-Stack React, TypeScript, and Node
By :

In any large multi-user application, we need to use a system to recognize and authorize users. Our forum application is no different.
Users will be able to post forum topics and answer forum questions. They therefore need to be able to distinguish their own activity from that of other users. So, we will build a login system to allow users to authenticate and perform activities on the site with their own unique account. We will therefore build the following features:
This feature will include not only the GraphQL resolvers to allow logging in and logging out, but also the screens to allow the user to enter their ID and password. We will also be using several technologies to provide a unique session state for the user's activities at any given time.
A registration system will include both screens and resolvers that allow a user to create a unique account in order to distinguish their activities on the...