https://github.com/wesscoby/electron-todo-app
A React Redux Todo application built with Electron
https://github.com/wesscoby/electron-todo-app
Last synced: about 2 months ago
JSON representation
A React Redux Todo application built with Electron
- Host: GitHub
- URL: https://github.com/wesscoby/electron-todo-app
- Owner: wesscoby
- Created: 2020-10-21T13:05:30.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-23T21:25:45.000Z (over 4 years ago)
- Last Synced: 2025-02-01T16:22:09.469Z (4 months ago)
- Language: TypeScript
- Size: 558 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Electron Todo App
A React Redux todo application built with Electron and create-react-app.
### Details
#### Build tools
- Electron
- Create React App
- Redux toolkit#### Functionality
The main feature of the application is CRUD functionality for tasks### Usage
To run locally:
- Clone the repository and install dependencies:
```bash
# install dependencies with yarn
yarn install# or npm
npm install
```- Build and run
```bash
# Build
yarn build:desktop# Run
yarn start:desktop
```