Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 781 Bytes

File metadata and controls

21 lines (17 loc) · 781 Bytes

Express

This project is to provide a basic template for an Express-based app. It will include the common options for setting up a a RESTful api along with serving static web pages. Database connections and more complex configurations won't be covered here, as all that is intended is to save time with having to start a new project from scratch.

Organization

public

This folder hosts all the resources that are available to the general public, like HTML, CSS, JS and image files needed to run a webpage.

src

This folder contains all the parts that make the app work

config

controllers

middleware

models

routes

services

templates

utils

tests

This folder houses the test suites for ensuring the app is working as expected.