Skip to content

abdullah-devs/note-taking-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📝 Note Taking App

Simple note taking app built using the MERN stack (MongoDB, Express.js, React, Node.js) with Typescript.

Getting started

To get started with this project, run:

git clone https://github.com/Abdullah-988/note-taking-app.git

Setup .env files,

frontend/.env your backend url (use http://localhost:5555 as a start):

VITE_BACKEND_API="http://localhost:5555"

backend/.env make sure PORT is the same in the frontend VITE_BACKEND_API url port (5555):

MONGODB_URL=
PORT=5555
JWT_SECRET=

then in each folder (frontend and backend) run:

npm install

and

npm run dev