Hook

Their other posts in the index, biggest breakout first.
How a full stack app works. There are three main components: the back end, which is usually a database, and an API to manage the stuff coming from the front end. And finally, the front end, which is basically the thing the user sees. And in our example here, the front end would be the register form with the user like puts in everything. The API, in this case, would be the data from here, so the name, email, and password being sent to the back end. The back end is where the user will be stored, so that the code can remember them and they can have like an account. And if we actually go to the code, you can see the front end here, which is the register form, where we're getting the name, email, and password. And then the API, where we're simply getting the email, name, and password from the user and telling the code here to store it in the back end. And as you can see here, we have different parameters for the user, such as the name, email, and password. And that is the basics of how a full stack app looks like.