Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/technicallyjosh/tc-notifier
https://github.com/technicallyjosh/tc-notifier
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/technicallyjosh/tc-notifier
- Owner: technicallyjosh
- Created: 2019-10-14T05:51:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T10:40:19.000Z (about 2 years ago)
- Last Synced: 2023-02-26T18:56:22.965Z (almost 2 years ago)
- Language: JavaScript
- Size: 796 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Electron, TypeScript, and React Template
The goal of this base project is to have a solid base structure without all that hidden crap that
other boilerplates use and hide any _actual_ examples of _how_ it works.I personally love Semantic UI for the UI base, but you can easily swap it out for something else.
## References/Dependencies
- [Electron](https://electronjs.org)
- [TypeScript](https://www.typescriptlang.org)
- [React](https://reactjs.org)
- [Webpack](https://webpack.js.org)
- [Semantic UI React](https://react.semantic-ui.com)## Basic Scripts
```bash
# Install deps, build, and watch for changes. If main process changes, electron will reload.
npm run dev# Builds in development mode
npm run build:dev# Builds in production mode
npm run build:prod# Builds the electron application in a directory (for testing)
npm run pack# Builds the electron application
npm run dist
```