# installs nvm (Node Version Manager)
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
# download and install Node.js
$ nvm install 18
# verifies the right Node.js version is in the environment
$ node -v # should print `v18.20.3`
# If Yarn is not installed, please install it.
$ npm install --global yarn
# Install project dependent packages.
$ yarn install
Run yarn dev
. The app will be found at [http://localhost:3000]
$ yarn dev
- Practice TDD, using jest & cypress and next.js.
- Practice custom ESLint configuration.
- Practice CI yml scripts