From 0f476c0462332c8dec61508bce99a54124383d71 Mon Sep 17 00:00:00 2001 From: Jon Church Date: Sat, 1 Feb 2020 00:15:51 -0500 Subject: [PATCH] add default project structure tree to readme --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index ca18976e..d1bada42 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,31 @@ Start your Express.js app at `http://localhost:3000/`: $ npm start ``` +## Project Structure + +The generator creates the following project structure by default: + +``` +. +├── app.js +├── bin +│   └── www +├── package-lock.json +├── package.json +├── public +│   ├── images +│   ├── javascripts +│   └── stylesheets +│   └── style.css +├── routes +│   ├── index.js +│   └── users.js +└── views + ├── error.jade + ├── index.jade + └── layout.jade +``` + ## Command Line Options This generator can also be further configured with the following command line flags.