An open API service indexing awesome lists of open source software.

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

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
```