/basic-express-server

Primary LanguageJavaScriptMIT LicenseMIT

LAB - Class 2

Project: Basic-Express-Server

Project version: 0.0.1

Author: Kale Lesko

Links and Resources

Pull-Requests

Setup

.env requirements (where applicable)

i.e.

  • PORT - Port Number
  • MONGODB_URI - URL to the running mongo instance/db

How to initialize/run your application (where applicable)

  • e.g. npm start

How to use your library (where applicable)

Tests

  • How do you run tests?
  • Any tests of note?
  • Describe any tests that you did not complete, skipped, etc

UML

UML Example

file structure

├── .gitignore ├── .eslintrc.json ├── tests │ ├── server.test.js │ ├── validator.test.js │ ├── logger.test.js ├── src │ ├── error-handlers │ │ ├── 404.js │ │ ├── 500.js │ ├── middleware │ │ ├── logger.js │ │ ├── validator.js │ ├── server.js ├── index.js └── package.json

deployment