LeeDDHH / alias-agent

Electron + React + TypeScript アプリ

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Electron + React + TypeScript アプリ

Electron + TypeScript + React の環境構築(Early 2021)を元に作成

動作環境

node.js 14.15.4
npm 7.5.4
yarn 1.22.4

実行コマンド

install

nodebrew での方法を記載

nodebrew install-binary 14.16.1
nodebrew use 14.16.1

TypeScript + React JSX + CSS Modules で実現するタイプセーフな Web 開発

構造

.
├── README.md
├── dist
│   └── main
│       ├── images
│       │   ├── img.d.ts
│       │   └── terminal16x16.png
│       ├── main.js
│       └── preload.js
├── package.json
├── src
│   ├── @types
│   │   └── global.d.ts
│   ├── images
│   │   ├── img.d.ts
│   │   └── terminal16x16.png
│   ├── main
│   │   ├── ipc
│   │   │   └── ipcMainActions.ts
│   │   ├── lib
│   │   │   ├── Const.ts
│   │   │   ├── ReactDevtools.ts
│   │   │   ├── Tray.ts
│   │   │   └── Windows.ts
│   │   ├── main.ts
│   │   └── preload.ts
│   └── renderer
│       └── mainView
│           ├── components
│           │   └── mainView.tsx
│           ├── index.html
│           ├── renderer.tsx
│           └── styles
│               ├── app.module.css
│               ├── app.module.css.d.ts
│               ├── mainView.module.css
│               └── mainView.module.css.d.ts
├── tsconfig.json
├── webpack.config.ts
└── yarn.lock

About

Electron + React + TypeScript アプリ


Languages

Language:TypeScript 93.7%Language:CSS 4.5%Language:HTML 1.8%