https://github.com/sawtone/markdowneditor
markdown编辑器(React + Nodejs + Bootstrap + 七牛云
https://github.com/sawtone/markdowneditor
bootstrap electron node-js qiniu-sdk react-js
Last synced: 3 months ago
JSON representation
markdown编辑器(React + Nodejs + Bootstrap + 七牛云
- Host: GitHub
- URL: https://github.com/sawtone/markdowneditor
- Owner: Sawtone
- Created: 2025-02-20T07:21:14.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-02-21T03:17:22.000Z (3 months ago)
- Last Synced: 2025-02-21T04:19:28.708Z (3 months ago)
- Topics: bootstrap, electron, node-js, qiniu-sdk, react-js
- Language: JavaScript
- Homepage:
- Size: 191 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Markdown 编辑器项目
## 环境要求
- Node.js 18.x 或更高版本
- npm 9.x 或更高版本
- Git## 安装步骤
#### 1. 克隆仓库
```bash
git clone https://github.com/你的用户名/仓库名称.git
cd markdown-editor
```#### 2. 安装依赖
```
npm install
```## 运行项目
#### 开发模式
```
npm run dev
```#### 生产构建
```
npm run build
```## 项目结构
```
├── src/
│ ├── Components/ # 组件目录
│ ├── main.js # Electron 主进程
├── public/ # 静态资源
├── package.json # 依赖配置
└── README.md # 说明文档
```