- node
^16.x.x
- yarn
^1.22.x
- Install Node.js: Our app is powered by Node.js. We recommend you to install Node.js using nvm.
- Install yarn: See the yarn documentation for instructions on installing it with your OS.
- Run these command to start the project
$ yarn install # install all the deps (first time only, if there's no dep update)
$ yarn dev # start the service on local
- Open
localhost:3000
on your default browser and login to access the full website capability
src/ # Main Source Directory
├── __data_mocks__ # Data Mock API
├── __mocks__ # Mock Function
├── __tests__ # Unit Tests
├── api # All API Needed
├── components # All Page Components
├── context # Project's Context
├── pages # All Pages Existed in this Project
├── styles # Global Styles
└── utils # Global Utils
- HTTP Request: cross-fetch
- Unit Testing: jest
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!