Self-hosted markdown editor with advanced features for personal use.
- Split Editor: Side-by-side code and preview with real-time rendering
- Tab System: Multiple documents open simultaneously
- Toolbar: Quick formatting buttons for all markdown syntax
- Assets Sidebar: Track images, links, alerts, footnotes, and tables
- File Browser: Navigate and manage markdown files
- Spellcheck: Multi-language support (pt-BR, en-US, es-ES, fr-FR, de-DE)
- i18n: Interface available in 5 languages
- Export: MD and HTML export (PDF and DOCX in Phase 2)
- React with TypeScript
- Next.js 15
- Tailwind CSS
- react-i18next (internationalization)
- nspell (spellchecking)
- Node.js with TypeScript
- Express
- REST API
- Docker & Docker Compose
- ZimaOS ready
cd frontend
npm install # May have issues on certain filesystems
npm run devcd backend
npm install # May have issues on certain filesystems
npm run dev- Build and start containers:
docker-compose up -d- Access the application:
- Frontend: http://localhost:3000
- Backend API: http://localhost:3001
- Configure workspace volumes in
docker-compose.yml:
volumes:
- /your/documents/path:/workspace/docs
- /your/projects/path:/workspace/projectsmarkdown-editor/
├── frontend/ # React/Next.js application
│ ├── app/ # Next.js app directory
│ ├── components/ # React components
│ │ ├── Editor/
│ │ ├── Preview/
│ │ ├── Toolbar/
│ │ ├── Sidebar/
│ │ ├── Tabs/
│ │ └── FileBrowser/
│ ├── hooks/ # Custom React hooks
│ ├── utils/ # Utilities
│ ├── locales/ # Translation files
│ └── styles/ # CSS files
│
├── backend/ # Node.js/Express API
│ └── src/
│ ├── routes/ # API routes
│ ├── controllers/ # Route controllers
│ ├── services/ # Business logic
│ ├── middleware/ # Express middleware
│ └── utils/ # Utilities
│
├── docker/ # Docker configurations
│ ├── Dockerfile.frontend
│ └── Dockerfile.backend
│
├── dictionaries/ # Spellcheck dictionaries (TODO)
│
├── docker-compose.yml # Container orchestration
├── .env.example # Environment variables template
└── README.md # This file
PORT=3001
NODE_ENV=development
FRONTEND_URL=http://localhost:3000
WORKSPACE_ROOT=/workspace- Project setup
- Basic split editor
- Markdown rendering
- File save/open
- Basic toolbar
- Tab system
- Assets sidebar
- File browser
- MD & HTML export
- i18n (pt-BR & en-US)
- Full spellchecking
- All 5 languages
- Complete assets tracking
- PDF & DOCX export
- Performance optimizations
- Electron/Tauri adaptation
- Windows/Linux packages
See CONTRIBUTING.md for guidelines on:
- Adding new translations
- Code style
- Pull request process
Private project for personal use.
For issues and questions, check the project documentation in /design and REQUISITOS.md.