-
Installation of Node Version Manager
- Refer to the GitHub on how to install node version manager (GitHub)
nvm install node
to install the latest version of node.js- Verify that you have installed node correctly
node -v
- Verify that you have
npm
by typing innpm -v
-
Installation of yarn [https://classic.yarnpkg.com/lang/en/docs/install/#windows-stable]
# Installing yarn npm install --global yarn # Verify installation yarn -- version
-
Installation of project libraries
git clone https://github.com/NUS-Project-SaBai/FrontEnd # Change Directory into the FrontEnd folder cd FrontEnd # Install the necessary libraries for the project yarn install # Run the development server yarn dev
- Node Version Manager [https://github.com/nvm-sh/nvm]
- Node.js [https://nodejs.org/en]
- Node Package Manager [https://www.npmjs.com/]
- Yarn [https://yarnpkg.com/]
- React.js [https://react.dev/]
- Next.js [https://nextjs.org/]
- SASS [https://sass-lang.com/]
- Axios [https://axios-http.com/docs/intro]