This project is a simple note-taking application developed using Node.js, TypeScript, React, and MongoDB. The project serves as a beginner-level example for those looking to learn TypeScript. This project was coded together with the youtube channel "Coding in Flow".
- Node.js
- TypeScript
- React
- MongoDB
Follow the steps below to install project dependencies:
- Open the terminal in the project directory.
- Install server dependencies:
cd backend
npm install
- Install client dependencies:
cd frontend npm install
Follow the steps below to start the project:
- To start the server:
cd backend
npm start
Server will run at http://localhost:5000.
2. To start the client, in the same main directory, run:
cd frontend
npm start
The application will run at http://localhost:3000.