Skip to content

Commit

Permalink
初始化仓库
Browse files Browse the repository at this point in the history
  • Loading branch information
加柱 committed Nov 4, 2021
1 parent 1e030e7 commit 5b2dda1
Show file tree
Hide file tree
Showing 17 changed files with 5,174 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
.DS_Store
node_modules/*
/dist/
/build/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
*.log
/test/unit/coverage/
/test/e2e/reports/
selenium-debug.log

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
/logs/
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
## 说明

weread-pc 是一款使用跨平台桌面开发框架 [electron](https://www.electronjs.org/) 封装的微信阅读PC版客户端, 仅仅是将[https://weread.qq.com/](https://weread.qq.com/)通过 webview 嵌入到客户端中,没有提供其他额外功能。读者可以用该工程作为 electron 的入门项目,简单了解一下 electron 框架,也可以用来作为微信阅读的客户端常驻电脑后台,方便阅读。

### 开发环境
- 操作系统:
- windows 10
- node v16.4.2

- 项目环境
- Electron
- React
- TypeScript
- Webpack

### 运行
``` shell
git clone https://github.com/BirdLearn/weread-pc.git
cd weread-pc
npm install
npm start
```

Loading

0 comments on commit 5b2dda1

Please sign in to comment.