A beautiful, minimalist notepad application built with Vue 3, TypeScript, and Tailwind CSS 4. Your notes are saved locally in your browser's storage, ensuring privacy and offline access.
- 🎨 Beautiful UI: Clean, modern interface with dark/light theme support
- 📱 Responsive Design: Works perfectly on desktop, tablet, and mobile
- 🏷️ Smart Organization: Tag your notes and use advanced filtering
- 📌 Pin Important Notes: Keep important notes at the top
- 🔍 Powerful Search: Find notes by title, content, or tags
- 💾 Local Storage: All data stays in your browser - no server required
- ⚡ Real-time Autosave: Your changes are saved automatically
- 📊 Writing Stats: Track word count and character count
- 🎯 Focus Mode: Distraction-free writing experience
- Node.js 18 or higher
- npm or yarn
- Clone the repository:
git clone https://github.com/yourusername/anotherpad.git
cd anotherpad- Install dependencies:
npm install- Start the development server:
npm run dev- Open your browser and navigate to
http://localhost:5173
npm run buildThe built files will be in the dist directory.
This project is configured for automatic deployment to GitHub Pages:
- Push your code to the
mainbranch - Enable GitHub Pages in your repository settings
- Select "GitHub Actions" as the source
- Your app will be automatically deployed!
Alternatively, you can deploy manually:
npm run deploy- Frontend Framework: Vue 3 with Composition API
- Language: TypeScript
- Styling: Tailwind CSS 4
- Build Tool: Vite
- Icons: Lucide Vue
- Deployment: GitHub Pages
src/
├── components/ # Vue components
│ ├── NoteEditor.vue # Main note editing interface
│ └── NoteSidebar.vue # Notes list and filters
├── composables/ # Vue composables
│ ├── useNotes.ts # Notes management logic
│ └── useTheme.ts # Theme management
├── types/ # TypeScript type definitions
│ └── index.ts
├── App.vue # Main application component
├── main.ts # Application entry point
└── style.css # Global styles
The app supports both light and dark themes with automatic system preference detection. You can customize the theme colors in the Tailwind configuration.
By default, notes are stored in localStorage. You can extend the storage system to support:
- IndexedDB for larger storage capacity
- Cloud storage integration
- Export/import functionality
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the project
- Create your feature branch (
git checkout -b feature/AmazingFeature) - Commit your changes (
git commit -m 'Add some AmazingFeature') - Push to the branch (
git push origin feature/AmazingFeature) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details.
- Vue.js - The Progressive JavaScript Framework
- Tailwind CSS - A utility-first CSS framework
- Lucide - Beautiful & consistent icon set
- Vite - Next generation frontend tooling
Made with ❤️ and ☕ by [Your Name]