https://github.com/thamaji/typescript-electron-on-vscode
Electron 開発環境
https://github.com/thamaji/typescript-electron-on-vscode
devcontainer electron reactjs typescript vscode
Last synced: about 2 months ago
JSON representation
Electron 開発環境
- Host: GitHub
- URL: https://github.com/thamaji/typescript-electron-on-vscode
- Owner: thamaji
- Created: 2021-07-01T04:48:32.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-08T10:35:09.000Z (almost 5 years ago)
- Last Synced: 2025-12-27T09:56:16.474Z (6 months ago)
- Topics: devcontainer, electron, reactjs, typescript, vscode
- Language: Dockerfile
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Electron TypeScript React on VS Code
====
## Requirement
- [Visual Studio Code](https://code.visualstudio.com/download)
- [Docker](https://docs.docker.com/get-docker/)
- [VS Code Remote container](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers)
## Getting Started
### Open this project in VSCode.
```
$ code .
```
### Reopen project with Remote-Containers.
Open command palet `Ctrl + Shift + P` and execute `Remote-Containers: Reopen in Container`.
### Rename project-name in `package.json`.
```
{
"name": "my-project", // change it!
"version": "1.0.0",
:
:
}
```
### Start your project with development mode.
```
$ yarn start
```
you can see linux desktop in http://localhost:8080.
### Package your project for some platforms.
```
$ yarn package
```
results are in `./build` directory.