An open source note management app. Originally planned to be released to phones, but I postponed doing that due to personal limitations.
This is also my first full-stack application using NodeJS.
To run the web client, run these commands on your terminal:
cd client
npm install
npm run dev
or
cd client
yarn
yarn dev
To run the server, you need to have MongoDB installed on your machine. If you have it, run these commands on your terminal:
cd server
npm install
npm run dev
or
cd server
yarn
yarn dev