There are system requirements in order to install and setup the "quarter" and its components
properly. Make sure that you are running the node.js install npm install.
You can download Node.js from here: Node JS.
NPM comes bundled with Node.js Or yarn install
Recommended node and npm
node install
npm install
You can use npm or yarn to Install Packages
NPM : You must have to npm install packages. You can do this by
running npm install from the root of your project to install all the necessary dependencies.
npm install Or yarn add
Development server
Run npm run dev for a dev server. Navigate to http://localhost:3000/ . The app will automatically
reload if you change any of the source files
npm run dev or yarn dev
Build
Run npm run build to build the project. The build artifacts will be stored in the build/
directory. Use the npm run build --prod flag for a production build.
npm run build or yarn build