Skip to content

Latest commit

 

History

History
37 lines (35 loc) · 891 Bytes

README.md

File metadata and controls

37 lines (35 loc) · 891 Bytes

node-boilerplate

Boilerplate for node backend with user auth

File Structure

/
├── Components
│   ├── Example
│   │   ├── index.js
│   │   └── index.test.js
│   └── Example2
│       ├── index.js
│       ├── index.test.js
│       ├── data.js
│       ├── data.test.js
│       ├── controler.js
│       └── controler.test.js
├── Utils
│   ├── Example
│   │   ├── index.js
│   │   └── index.test.js
│   └── Example2
│       ├── index.js
│       └── index.test.js
├── E2ETests
│   └── user.js
├── index.js
├── package.json
├── node_modules
└── README.md

Testing file location

Unit tests

Same place as the existing file

End to End tests

E2ETests folder