{"id":34605955,"url":"https://github.com/notepia/notepia","last_synced_at":"2026-01-24T16:07:00.598Z","repository":{"id":329945517,"uuid":"1048381501","full_name":"notepia/notepia","owner":"notepia","description":"Notepia is an open-source, self-hosted pinboard service designed to help you organize links, notes, and resources in a flexible and visual way.","archived":false,"fork":false,"pushed_at":"2026-01-19T15:19:37.000Z","size":4313,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-19T21:56:40.796Z","etag":null,"topics":["calendar","collaboration","file-management","flow","location-tracker","map","memos","note-taking","pin","pinboard","pins","real-time","rss-reader","self-hosted","todolist","view","whiteboard","widget"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/notepia.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-01T11:03:14.000Z","updated_at":"2026-01-19T15:15:20.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/notepia/notepia","commit_stats":null,"previous_names":["notepia/notepia"],"tags_count":47,"template":false,"template_full_name":null,"purl":"pkg:github/notepia/notepia","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notepia%2Fnotepia","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notepia%2Fnotepia/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notepia%2Fnotepia/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notepia%2Fnotepia/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/notepia","download_url":"https://codeload.github.com/notepia/notepia/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/notepia%2Fnotepia/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730935,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["calendar","collaboration","file-management","flow","location-tracker","map","memos","note-taking","pin","pinboard","pins","real-time","rss-reader","self-hosted","todolist","view","whiteboard","widget"],"created_at":"2025-12-24T13:45:37.407Z","updated_at":"2026-01-24T16:07:00.582Z","avatar_url":"https://github.com/notepia.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Notepia\n\n**Notepia** is an open-source, self-hosted pinboard service designed to help you organize links, notes, and resources in a flexible and visual way.\n\nBuild your own workspace with widgets, keep everything in one place, and stay in full control of your data.\n\n![screenshot](https://github.com/notepia/notepia/blob/main/web/src/assets/app.png)\n\n## ✨ Features\n\n* 🧩 **10+ Built-in Widgets**\n  Choose from more than 10 different widgets, including link, note, carousel, rss reader, map, calendar, folder, and more.\n\n* 🗂️ **Unlimited Workspaces**\n  Create unlimited workspaces to organize content by projects, topics, or personal needs.\n\n* 📌 **Flexible Pinboard Layout**\n  Arrange and customize widgets freely within each workspace.\n\n* 🗓️ **Calendar View**\n  Visualize pins and content in a calendar-based view for better time-based organization.\n\n* 🗺️ **Map View**\n  View location-based pins on an interactive map, perfect for travel plans or geo-related notes.\n\n* 📋 **Kanban Board**\n  Organize tasks with a powerful kanban board supporting drag-and-drop, multiple columns, and task management.\n\n* 🔄 **Flow Diagram**\n  Create and edit visual flowcharts and diagrams with an intuitive node-based editor.\n\n* 🎨 **Collaborative Whiteboard**\n  Real-time collaborative whiteboard for brainstorming, sketching, and visual planning with your team.\n\n* ✍️ **Real-time Collaborative Notes**\n  Edit notes together in real-time with CRDT-based synchronization powered by Y.js, ensuring conflict-free collaboration.\n\n* 🌐 **Modern Web Interface**\n  Clean, responsive UI optimized for both desktop and mobile devices.\n\n* 🏠 **Fully Self-Hosted**\n  Deploy Notepia on your own server and keep full ownership of your data.\n\n* 🧾 **Open Source**\n  Transparent, extensible, and community-driven.\n\n* 🐳 **Docker Ready**\n  Simple deployment with Docker and Docker Compose.\n\n---\n\n## 🚀 Installation\n\n### Docker Compose (Recommended)\n\nNotepia is available on Docker Hub as a single image that can run both the web service and background worker.\n\nFor production use with background job processing and real-time collaboration features:\n\n```yaml\nservices:\n  redis:\n    image: redis:7-alpine\n    container_name: notepia-redis\n    restart: unless-stopped\n    volumes:\n      - redis_data:/data\n    command: redis-server --appendonly yes\n    healthcheck:\n      test: [\"CMD\", \"redis-cli\", \"ping\"]\n      interval: 10s\n      timeout: 5s\n      retries: 5\n\n  web:\n    image: notepia/notepia\n    container_name: notepia-web\n    command: [\"./web\"]\n    ports:\n      - \"8080:8080\"\n    volumes:\n      - notepia_data:/usr/local/app/bin\n    environment:\n      REDIS_ADDR: redis:6379\n    depends_on:\n      redis:\n        condition: service_healthy\n    restart: unless-stopped\n\n  worker:\n    image: notepia/notepia\n    container_name: notepia-worker\n    command: [\"./worker\"]\n    volumes:\n      - notepia_data:/usr/local/app/bin\n    environment:\n      REDIS_ADDR: redis:6379\n    depends_on:\n      redis:\n        condition: service_healthy\n    restart: unless-stopped\n\nvolumes:\n  redis_data:\n    driver: local\n  notepia_data:\n    driver: local\n```\n\nStart the services:\n\n```bash\ndocker compose up -d\n```\n\n## 🤝 Contributing\n\nContributions are welcome!\n\n* Fork the repository\n* Create your feature branch\n* Commit your changes\n* Open a pull request\n\n---\n\n## 📄 License\n\nNotepia is licensed under the **MIT License**.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotepia%2Fnotepia","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnotepia%2Fnotepia","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnotepia%2Fnotepia/lists"}