Building an Express Application Chapter 2
The output is as follows:
The command creates a lot of files and folders in our application. Let's have a quick look at
these:
package.json: This file contains a list of all the node packages that we have
installed in the application and an introduction to the application.
app.js: This file is the main entry page for an express application. The web
server code resides in this file.
public: We can use this folder to insert our assets such as images, stylesheets, or
custom JavaScript code.