Notes App / https://360notes.netlify.app/
A full-stack AI-powered Notes Management application built with Node.js, Express, MongoDB, Netlify Functions, and vanilla JavaScript.
The application allows users to securely create, edit, delete, search, organize, and manage personal notes with authentication, a modern responsive UI, and AI-powered assistance for note creation, summaries, tags, and knowledge retrieval.
User Signup & Login Authentication JWT-based protected routes Private user-specific notes Create, Edit, Delete notes Search notes by title/content Debounced search input Pagination support Date filtering Dark Mode toggle Responsive premium UI Toast notifications MongoDB Atlas database integration AI-generated note drafts from a topic AI automatic summaries for notes AI-generated tags for notes Editable tags by user Ask AI questions based on saved notes AI-assisted personal knowledge retrieval
Users can enter a topic, and the AI generates a structured note draft. The generated note is placed inside the writing section, allowing the user to review, edit, and save it manually.
When a note is saved, the backend can generate a short AI summary for the note and store it with the note document in MongoDB.
The AI can analyze the note content and generate relevant tags. Users can also manually edit tags before saving or updating notes.
Users can ask a question, and the AI answers based only on their saved notes. This allows quick knowledge retrieval without manually searching through all notes.
- Clone Repository
git clone https://github.com/Pasha806/Notes-App.git
cd notes-api - Install Dependencies
npm install - Create .env
Create a .env file in the root folder:
MONGO_URI=your_mongodb_connection_string
JWT_SECRET=your_secret_key
GEMINI_API_KEY=your_gemini_api_key
Run Locally
Development Mode
npm run dev
Production Mode
npm start
Developed by Hamza Imran