https://github.com/raynou/electron-react-typeorm
electron-react-typeorm
https://github.com/raynou/electron-react-typeorm
Last synced: about 2 months ago
JSON representation
electron-react-typeorm
- Host: GitHub
- URL: https://github.com/raynou/electron-react-typeorm
- Owner: Raynou
- Created: 2023-10-10T02:48:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-11T03:48:13.000Z (over 1 year ago)
- Last Synced: 2025-01-11T19:31:01.702Z (4 months ago)
- Language: TypeScript
- Size: 217 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Awesome Project Build with Electron, TypeORM and React-TS
## Steps to run this project:
1. Run `npm i` command to install all the required node_modules.
2. Run `npm start` command to run this project in dev mode.## Project Structure
```
├── core
│ ├── controller
│ │
│ ├── db
│ │
│ ├── entity
│ │
│ ├── service
│ │
│ ├── data-source.ts
│ └── index.ts
│
├── electron
│ ├── constants.ts
│ ├── index.ts
│ ├── preload.ts
│ └── renderer.ts
│
├── src
│ ├── index.css
│ ├── index.html
│ └── main.tsx
|
├── .eslintrc.json
├── .prettierignore
├── .prettierrc
├── entities.d.ts
├── forge.config.ts
├── package-lock.json
├── package.json
├── README.md
├── renderer.d.ts
├── tsconfig.json
├── webpack.main.config.ts
├── webpack.plugins.ts
├── webpack.renderer.config.ts
└── webpack.rules.ts
```