This repository is a playground to explore the JavaScript stack. Please install the required softwares and frameworks before working. You ca either clone or fork the repo. In case you clone please create a local branch and work on it.
- Node - An open-source Javascript runtime
- Yarn - A package manager for Node (Alternative to NPM)
- VSCode - A text editor with IDE like features
You can clone the repo or fork it. If you are going to clone it. Please follow the below instructions.
Clone this repo either by using HTTPS or SSH
HTTPS:
git clone https://github.com/sadarshannaiynar/urban_general.git
SSH:
git clone [email protected]:sadarshannaiynar/urban_general.git
Open the command line and run the command
yarn install
or
npm install
After installing start the app by using
yarn start
or
npm start
Unit tests:
yarn test
or
npm test
Unit tests watch:
yarn test:watch
or
npm run test:watch
Feature tests:
yarn test:feature
or
npm run test:feature
Build webpack:
yarn build
or
npm build