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
yarninstalled in your device- Delete the
yarn.lockandnode_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
yarninstalled in your device
# yarn start to start development server
yarn startTo format the code run
npm run format
# OR
yarn formatTo check linting errors. You can install eslint for your IDE or text-editor.
OR
npm run lint
# OR
yarn lintYou can test the app manually or you can test the app by just runing
npm run test
# OR
yarn test