https://github.com/opensumi/ide-electron
OpenSumi Electron Version
https://github.com/opensumi/ide-electron
electron ide
Last synced: about 1 year 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 (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T06:44:45.000Z (over 1 year ago)
- Last Synced: 2025-04-12T23:36:53.091Z (about 1 year ago)
- Topics: electron, ide
- Language: TypeScript
- Homepage: https://opensumi.com
- Size: 2.79 MB
- Stars: 189
- Watchers: 24
- Forks: 64
- 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)

## Startup
```shell
git clone git@github.com: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
```