This is dairy app. In this app you can write notes for diffrent dates. It allows you to write multiple notes for a single date.
You should have nodejs
installed in your device. If you don't have nodejs
then go to nodejs
If you are on Mac os or Linux. Then follow these steps
- If you don't have
yarn
installed in your device- Delete the
yarn.lock
andnode_module
- Delete the
# Run npm install to install all the dependencies
npm install
# Run npm start to start development server
npm start
- If you have
yarn
installed in your device
# yarn start to start development server
yarn start
To format the code run
npm run format
# OR
yarn format
To check linting errors. You can install eslint
for your IDE or text-editor.
OR
npm run lint
# OR
yarn lint
You can test the app manually or you can test the app by just runing
npm run test
# OR
yarn test