A simple note-taking app for Frappe Framework with real-time collaboration.
- Create and edit rich-text notes
- Share notes with other users (Read/Write/Admin permissions)
- Public/private notes
- Real-time collaboration via Socket.io
- Auto-save functionality
# Create new app
bench new-app quicknotes
# Install app
bench --site your-site install-app quicknotes
# Run migrations
bench --site your-site migrate
# Build and restart
bench build
bench restart- Navigate to
/quicknoteson your site - Create new notes or select existing ones
- Share notes by clicking the Share button
- Toggle public/private visibility as needed
quicknotes/
├── quicknotes/
│ ├── hooks.py
│ ├── api.py
│ ├── www/quicknotes/
│ │ ├── index.py
│ │ └── index.html
│ └── quicknotes/doctype/
│ ├── quick_note/
│ └── quick_note_share/
- Frappe Framework v13+
- Socket.io for real-time features
MIT