devnotepad

DevTools Notepad

Author: SimΓ©on Azogbonon (simeonaz.netlify.app)
GitHub Repo: https://github.com/simeonaz/devnotepad


🎯 Objective

Build a simple, fast, and local web application that allows a developer to:

Real goal: Demonstrate my ability to design a useful, UX-friendly, well-structured, and high-performance tool, without a backend.


πŸ“Œ Features

  1. Add notes
    • A form at the top lets you add a note with: title, free content (text or code), category (HTML, CSS, JavaScript, TODO, Others)
    • Each note is instantly stored in localStorage
  2. Display and manage notes
    • List of notes as cards or accordion
    • Shows title, content, and category
    • Buttons: πŸ—‘οΈ Delete, Edit, πŸ“‹ Copy (Clipboard API)
    • Filter by category
  1. Persistence
    • Data is stored client-side (localStorage)
    • No backend required, fast to deploy, offline ready

🧠 Why is it smart?


πŸ’‘ Possible improvements


πŸš€ Quick Start

Installation

# pnpm
pnpm install

# npm
npm install

# yarn
yarn install

Development

# pnpm
pnpm dev

# npm
npm run dev

# yarn
yarn dev

Production

# pnpm
pnpm build
pnpm preview

# npm
npm run build
npm run preview

# yarn
yarn build
yarn preview

πŸ“š Documentation


**