Minimal Express app scaffold.
Getting started
- Install dependencies
cd "/Users/jaycen05/Desktop/Projects/Backend Projects/member-jay-basic-info"
npm install- Start server
npm start
# or for development with nodemon (install nodemon globally or as devDependency)
npm run devurl endpoints:
- '/' -> return index.html
- '/about' -> return about.html
- '/contact' -> return contact-me.html
- all other endpoints will return 404.html --> Page not found.