Live Version:https://pixelkeep.web.app
A secure, offline-first Progressive Web App (PWA) for creating and managing encrypted notes and to-do lists with a retro "pixel art" aesthetic.
- Offline First: Fully functional without an internet connection thanks to a Service Worker.
- Secure & Private: All your data is encrypted using AES via
crypto-jsand stored locally in your browser's IndexedDB. - Password Protection: A password is required to unlock and decrypt your notes and quests.
- Folder Organization: Organize your notes and quests into nested folders for better structure.
- Note Taking: A rich text editor for notes that supports bold, italic, underline, lists, and embedding images.
- Audio Recording: Record and attach audio clips directly to your notes.
- Quest Log: A to-do list to keep track of your tasks with location, people, and time details.
- Customizable Settings: Personalize the experience with custom fonts, themes (colors/backgrounds), and interface scaling.
- Image Support: Embed images from your gallery or camera directly into your notes.
- Data Portability: Export and import your data as JSON, Text, or Markdown files.
- Installable: As a PWA, PixelNotes can be installed on your desktop or mobile device for a native-app-like experience.
- Frontend: Vanilla HTML, CSS, and JavaScript
- Styling: Tailwind CSS
- Offline Storage: IndexedDB with the
idblibrary - Encryption:
crypto-js - PWA: Service Worker and Web App Manifest
- Deployment: Firebase Hosting, Replit
This is a client-side application with no build process.
You just need a modern web browser. To run it locally, you'll need a local web server.
Clone this repository.
Navigate to the project directory.
Start a local web server.
Using Python (Preferred):
python server.py
Then open
http://localhost:5000in your browser.Using Python (Simple):
python -m http.server
Then open
http://localhost:8000in your browser.Using Node.js (with
http-server):npm install -g http-server http-server .Then open
http://localhost:8080in your browser.
This project is configured for easy deployment with Firebase Hosting.
- Install Firebase CLI:
npm install -g firebase-tools
- Login to Firebase:
firebase login
- Deploy:
firebase deploy
This project is licensed under the MIT License.