An open API service indexing awesome lists of open source software.

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

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 |