Installing and running the template is super easy in Materio, please follow these steps and you should be ready to rock 🤘
- Make sure you have installed Node.js (LTS). If Node.js is already installed in your system, make sure the installed version is LTS (and not the latest version)
- Navigate to the
typescript-version
orjavascript-version
folder and run following command to install our local dependencies listed inpackage.json
. You can usenpm
ORyarn
as per your preference.
It is recommended to use yarn for better dependency management
# For npm
npm install --legacy-peer-deps
# For yarn
yarn install
- Now, you are ready to start the server with the help of command shown below. Open http://localhost:3000/ to check your development 🚀.
# For npm
npm run dev
# For yarn
yarn dev