Skip to content

Commit 52cdabf

Browse files
committed
chore: write directory structure in markdown
1 parent de71d83 commit 52cdabf

1 file changed

Lines changed: 52 additions & 0 deletions

File tree

DIRECTORY.md

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Directory structure
2+
3+
Figure 01
4+
5+
```bash
6+
EXPRESS-API-TEMPLATE
7+
├── .editorconfig
8+
├── .gitignore
9+
├── package.json
10+
└── README.md
11+
```
12+
13+
Figure 02
14+
15+
```bash
16+
EXPRESS-API-TEMPLATE
17+
├── node_modules
18+
├── src
19+
| ├── bin
20+
│   │   ├── www.js
21+
│   ├── routes
22+
│   | ├── index.js
23+
│   └── app.js
24+
├── .editorconfig
25+
├── .gitignore
26+
├── package.json
27+
├── README.md
28+
└── yarn.lock
29+
```
30+
31+
Figure 03
32+
33+
```bash
34+
EXPRESS-API-TEMPLATE
35+
├── build
36+
├── node_modules
37+
├── src
38+
| ├── bin
39+
│   │   ├── www.js
40+
│   ├── routes
41+
│   | ├── index.js
42+
│   └── app.js
43+
├── .babelrc
44+
├── .editorconfig
45+
├── .eslintrc.json
46+
├── .gitignore
47+
├── .prettierrc
48+
├── nodemon.json
49+
├── package.json
50+
├── README.md
51+
└── yarn.lock
52+
```

0 commit comments

Comments
 (0)