Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/opensumi/ide-electron
OpenSumi Electron Version
https://github.com/opensumi/ide-electron
electron ide
Last synced: about 18 hours ago
JSON representation
OpenSumi Electron Version
- Host: GitHub
- URL: https://github.com/opensumi/ide-electron
- Owner: opensumi
- License: mit
- Created: 2021-12-17T03:48:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T11:06:16.000Z (about 2 months ago)
- Last Synced: 2024-10-29T13:10:22.959Z (about 2 months ago)
- Topics: electron, ide
- Language: TypeScript
- Homepage: https://opensumi.com
- Size: 3.36 MB
- Stars: 175
- Watchers: 22
- Forks: 57
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenSumi IDE Electron
English | [中文文档](https://opensumi.com/zh/docs/integrate/quick-start/electron)
![OpenSumi Desktop](./snapshots/sumi-electron.png)
## Startup
```shell
git clone [email protected]:opensumi/ide-electron.git
cd ide-electron
yarn
yarn build
yarn rebuild-native --force-rebuild=true
yarn download-extension # install extension (Optional)
yarn start
```to use the China CDN mirror, checkout branch `main-cn`:
```shell
git checkout main-cn
```## Develop
Start application:
```shell
yarn watch
yarn start
```When there are new changes in the code, open the command panel in the editor shift+command+p, select and run the 'Reload Window' to reload the current editor window.
## package to DMG
package the project, and the installation package in the `out` directory:
```shell
yarn run pack
```