https://github.com/belchenkov/markdown-editor-electron
Building a Markdown Editor on Electron.js
https://github.com/belchenkov/markdown-editor-electron
electron-builder electron-updater electronjs simplemde
Last synced: about 2 months ago
JSON representation
Building a Markdown Editor on Electron.js
- Host: GitHub
- URL: https://github.com/belchenkov/markdown-editor-electron
- Owner: Belchenkov
- Created: 2020-03-16T16:44:54.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T10:20:49.000Z (over 3 years ago)
- Last Synced: 2025-03-02T17:52:36.786Z (over 1 year ago)
- Topics: electron-builder, electron-updater, electronjs, simplemde
- Language: JavaScript
- Homepage: https://github.com/Belchenkov/markdown-editor-electron/releases/tag/master
- Size: 373 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Electron Markdown Editor
> Building a Markdown Editor on Electron.js
Demo: https://github.com/Belchenkov/markdown-editor-electron/releases/tag/master
Running the project
```sh
npm install
npm start
```
## Publishing to the GitHub
Update the `package.json` file and provide the `build` settings:
```json
{
"build": {
"appId": "com.my.markdown-editor",
"publish": {
"provider": "github",
"owner": "",
"repo": "electron-updates"
}
}
}
```
## Available NPM scripts
| Script | Description |
| --- | --- |
| start | starts the Electron application |
| build:macos | creates a testing build for macOS |
| publish:github | releases the macOS version to the GitHub |