A simple note-taking web app built with Node.js, Express, and EJS.
- Create new notes with a title and content
- View a list of all notes
- View the content of each note
NotesTaking/
├── files/ # Stores all note files
├── public/ # Static assets (CSS, JS, etc.)
├── views/ # EJS templates
│ ├── index.ejs
│ └── show.ejs
├── index.js # Main server file
└── README.md
-
Clone the repository:
git clone https://github.com/yourusername/NotesTaking.git cd NotesTaking -
Install dependencies:
npm install
-
Create a
filesdirectory if it doesn't exist:mkdir files
-
Start the server:
node index.js
-
Open your browser and visit:
http://localhost:3000
- Click "Go Back To Home" to see all notes.
- Click on a note to view its content.
- Use the form on the home page to create a new note.
MIT