docs.rodeo

MDN Web Docs mirror

Express Tutorial: The Local Library website

{{LearnSidebar}} {{PreviousMenuNext("Learn_web_development/Extensions/Server-side/Express_Nodejs/development_environment", "Learn_web_development/Extensions/Server-side/Express_Nodejs/skeleton_website", "Learn_web_development/Extensions/Server-side/Express_Nodejs")}} 

The first article in our practical tutorial series explains what you’ll learn, and provides an overview of the “local library” example website we’ll be working through and evolving in subsequent articles.

Prerequisites: Read the Express Introduction. For the following articles you'll also need to have set up a Node development environment.
Objective: To introduce the example application used in this tutorial, and allow readers to understand what topics will be covered.

Overview

Welcome to the MDN “Local Library” Express (Node) tutorial, in which we develop a website that might be used to manage the catalog for a local library.

In this series of tutorial articles you will:

You have learnt about some of these topics already, and touched briefly on others. By the end of the tutorial series you should know enough to develop simple Express apps by yourself.

The LocalLibrary website

LocalLibrary is the name of the website that we’ll create and evolve over the course of this series of tutorials. As you’d expect, the purpose of the website is to provide an online catalog for a small local library, where users can browse available books and manage their accounts.

This example has been carefully chosen because it can scale to show as much or little detail as we need, and can be used to show off almost any Express feature. More importantly, it allows us to provide a guided path through the functionality you’ll need in any website:

Even though this is a very extensible example, it’s called LocalLibrary for a reason — we’re hoping to show the minimum information that will help you get up and running with Express quickly. As a result we’ll store information about books, copies of books, authors and other key information. We won’t however be storing information about other items a library might lend, or provide the infrastructure needed to support multiple library sites or other “big library” features.

I’m stuck, where can I get the source?

As you work through the tutorial we’ll provide the appropriate code snippets for you to copy and paste at each point, and there will be other code that we hope you’ll extend yourself (with some guidance).

Instead of copying and pasting all the code snippets, try typing them out, It’ll benefit you in the long run as you’ll be more familiar with the code next time you come to write something similar.

If you get stuck, you can find the fully developed version of the website on GitHub here.

[!NOTE] The specific versions of node, Express, and the other modules that this documentation was tested against are listed in the project package.json.

Summary

Now that you know a bit more about the LocalLibrary website and what you’re going to learn, it’s time to start creating a skeleton project to contain our example.

{{PreviousMenuNext("Learn_web_development/Extensions/Server-side/Express_Nodejs/development_environment", "Learn_web_development/Extensions/Server-side/Express_Nodejs/skeleton_website", "Learn_web_development/Extensions/Server-side/Express_Nodejs")}} 

In this article

View on MDN