Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxhu08/solidjs-electron
🔷 template for creating a solidjs + electron app
https://github.com/maxhu08/solidjs-electron
Last synced: 23 days ago
JSON representation
🔷 template for creating a solidjs + electron app
- Host: GitHub
- URL: https://github.com/maxhu08/solidjs-electron
- Owner: maxhu08
- Created: 2024-01-25T00:04:38.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-02-03T19:07:32.000Z (11 months ago)
- Last Synced: 2024-02-04T21:02:55.493Z (11 months ago)
- Language: TypeScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# solidjs-electron-template
this is a template for creating an electron app and solidjs app.
the solidjs code is in the app/ directory so make you're there for editing your solidjs code and installing dependecies for solidjs. the electron code is in the electron/ directory.
### getting started
to get started install the dependencies in both the app and electron directories
```bash
# clone template
git clone https://github.com/maxhu08/solidjs-electron.git# cd
cd solidjs-electron# installing app (solidjs) dependecies
cd app
npm install# installing electron dependecies
cd ../electron
npm install# delete git info so you can add your own repo
rm -rf .git
```then start the development server (make sure you're in the top dir)
```
npm run dev
```