Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 590 Bytes

README.md

File metadata and controls

12 lines (8 loc) · 590 Bytes

node-js-crash-course

Node.js Crash Course: Following the tutorial from Traversy Media

What does this do?

This creates a simple server that automatically loads the correct HTML page based on the URL's path and sets Content Types based on file's extension. Currently the only available pages are:

  • index.html
  • about.html
  • 404.html (general catch-all for incorrect paths)

Some additional files are in place that do some very basic testing of some other features of Node.js, such as filesystem, operating system, and event emitters.