Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erabossid/ers
https://github.com/erabossid/ers
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/erabossid/ers
- Owner: erabossid
- License: mit
- Created: 2020-10-13T03:54:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-02T16:38:09.000Z (about 4 years ago)
- Last Synced: 2024-11-15T01:44:18.918Z (about 2 months ago)
- Language: JavaScript
- Size: 979 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
(incompleted)
# Electron React SQLite App
Desktop app with database access## Install react
`npx create-react-app ers`Go to ers folder `cd ers` ,
Run the react app `npm start`## Install electron and electron-builder as devDependency
`npm install electron --save-dev`
`npm install electron-builder --save-dev`## Install SQLite3 database
`npm install sqlite3`## Install other necessary dev tools
`npm install concurrently electron-is-dev wait-on bluebird`***
## Let's work on electron
The app is currntly running the react default app. Need to change this to run eletronClear the unnecessary contents from the index.html in public folder, but do not delete this part `
` . Also change the title in ` ` of index.htmlCreate a new file `electron.js` in `public` folder
Then add necessary scripts (see the `electron.js` file in `public` folder of this project)Now add this to the `script` in `package.json` file
`"electron":"electron"`