https://github.com/aabuhijleh/browser-window-renderer-proxy
https://github.com/aabuhijleh/browser-window-renderer-proxy
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aabuhijleh/browser-window-renderer-proxy
- Owner: aabuhijleh
- License: cc0-1.0
- Created: 2020-03-17T08:31:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T10:17:00.000Z (over 2 years ago)
- Last Synced: 2025-02-05T05:34:22.554Z (4 months ago)
- Language: TypeScript
- Size: 688 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Electron TypeScript Quick Start
> This template is based on the official [electron-quick-start](https://github.com/electron/electron-quick-start) repository (but with typescript + electron-builder)
> Note: checkout `prettier` branch for a project with prettier/tslint integration + git hooks for enforcing consistent styling
## How to use?
```sh
# install dependencies
$ npm install# compile typescript files
$ npm run compile# watch typescript files for changes (auto compilation)
$ npm run watch# run the app
$ npm start# create distributable packages for specific platforms
$ npm run dist-linux
$ npm run dist-mac
$ npm run dist-windows
```## Directory Structure
.
├── electron-builder.json (electron-builder configuration)
├── .gitignore
├── LICENSE.md
├── package.json
├── package-lock.json
├── README.md
├── src (typescript files go here)
│ ├── main.ts
│ ├── preload.ts
│ └── renderer.ts
├── tsconfig.json (typescript compiler options)
├── tslint.json (tslint configuration)
└── views (html, css files go here)
└── index.html## Resources
- [Electron docs](https://www.electronjs.org/docs)
- [electron-builder docs](https://www.electron.build)
- [Typescript docs](https://www.typescriptlang.org/docs)
- [Tslint docs](https://palantir.github.io/tslint/usage/configuration)