Somebody else asks how to verify the library express was actually installed.
Somebody else asks how to verify the library express was actually installed.
You learn that third-party packages are installed in a directory called node_modules. Dependencies are specified in the manifest file called package followed by the extension json.
You learn that third-party packages are installed in a directory called node_modules. Dependencies are specified in the manifest file called package followed by the extension json.
Then you get introduced to the Express library.
After that, you learn how to generate an NPM project with the creation of a package dot json file.
Then you get introduced to the Express library.
After that, you learn how to generate an NPM project with the creation of a package dot json file.
You learn how to change the status code of the response.
The lesson also shows how to use the static files middleware so you don't have to manually define a route for every asset file that you might have.
You learn how to change the status code of the response.
The lesson also shows how to use the static files middleware so you don't have to manually define a route for every asset file that you might have.
You get exposed to the browser developer tools (DevTools) to monitor network requests so you can understand the request-response from the HTTP GET request made to the web server.
You get exposed to the browser developer tools (DevTools) to monitor network requests so you can understand the request-response from the HTTP GET request made to the web server.
The lesson goes over generating an NPM project and installing express.
Then, you learn how to code a basic server running at a specific port on localhost.
The lesson goes over generating an NPM project and installing express.
Then, you learn how to code a basic server running at a specific port on localhost.