https://github.com/abbychau/tiny-html-editor
A WYSIWYG web editor. Electron wrapper of TinyMCE 5
https://github.com/abbychau/tiny-html-editor
Last synced: 6 months ago
JSON representation
A WYSIWYG web editor. Electron wrapper of TinyMCE 5
- Host: GitHub
- URL: https://github.com/abbychau/tiny-html-editor
- Owner: abbychau
- License: mit
- Created: 2023-03-23T10:54:12.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-30T19:23:14.000Z (12 months ago)
- Last Synced: 2025-04-08T04:06:26.566Z (9 months ago)
- Language: JavaScript
- Homepage:
- Size: 142 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Tiny HTML Editor
A lightweight HTML editor built with Electron and TinyMCE that provides a rich text editing experience with a clean interface.

## Features
- Rich text editing with TinyMCE 5
- File operations (Open, Save, Save As)
- HTML beautification on save
- Full screen editing mode
- Support for images, tables, and media
- HTML code view and preview
- Cross-platform support (Windows, macOS, Linux)
## Installation
```sh
# Clone the repository
git clone https://github.com/abbychau/tinymce-htmleditor
# Install dependencies
npm install
```
## Development
To run the application in development mode:
```sh
npm start
```
## Building
Build for your specific platform:
```sh
# Windows
npm run build-win
# macOS
npm run build-mac
# Linux
npm run build-linux
```
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details.
## Credits
- [Electron](https://www.electronjs.org/)
- [TinyMCE](https://www.tiny.cloud/)
- [js-beautify](https://github.com/beautify-web/js-beautify)