Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsuyukimakoto/chore_electron
https://github.com/tsuyukimakoto/chore_electron
Last synced: about 22 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/tsuyukimakoto/chore_electron
- Owner: tsuyukimakoto
- Created: 2022-07-20T12:24:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-20T12:49:46.000Z (over 2 years ago)
- Last Synced: 2023-03-11T01:20:58.318Z (over 1 year ago)
- Language: JavaScript
- Size: 40 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chore_electron
起動
```
$ npx electron ./src
```パッケージング
```
$ npm install -D electron-packager$ npx electron-packager src MyApp --platform=darwin --arch=x64 --overwrite
$ npx electron-packager src MyApp --platform=darwin --arch=arm64 --overwrite
$ npx electron-packager src MyApp --platform=darwin --arch=universal --overwrite
``````
$ npm install -D electron-builder$ npx electron-builder --dir --mac --universal
```## typescript
$ yarn create electron-app MyTypescriptApp --template=typescript-webpack