https://github.com/yizhezhang-ervin/app_web_explorer
File Exploratory Engine with Vue3+Bootstrap5+Express4
https://github.com/yizhezhang-ervin/app_web_explorer
bootstrap express vue
Last synced: 3 months ago
JSON representation
File Exploratory Engine with Vue3+Bootstrap5+Express4
- Host: GitHub
- URL: https://github.com/yizhezhang-ervin/app_web_explorer
- Owner: YizheZhang-Ervin
- License: mit
- Created: 2021-03-11T01:15:30.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-28T05:51:03.000Z (over 1 year ago)
- Last Synced: 2025-01-06T04:40:54.235Z (5 months ago)
- Topics: bootstrap, express, vue
- Language: JavaScript
- Homepage:
- Size: 996 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# App_Web_Explorer
- Vue3 & Bootstrap5 & tesseract & lucky-canvas
- Express4## Features
1. 网页文件浏览器
- GET /file2. 登录登出
- POST /login3. 全局搜
- GET /gsearch4. 上传
- POST /upload5. 命令行运行
- POST /run6. 前端工具
- 摄像头&截屏
- 转盘
- canvas赛车游戏
- title时钟
- 经纬度
- 通知
- chrome://flags/#unsafely-treat-insecure-origin-as-secure
- 设置Insecure origins treated as secure为enabled,地址填127.0.0.1:3000
- ocr7. 其他
- webRTC 视频会议
- webSocket 服务端推送
- webSSH 网页终端
- webGL 网页游戏## Config Files
```
user-template.json
config-template.json
```## https
```
# 生成服务器端私钥
openssl genrsa -out server.key 1024# 生成服务端公钥
openssl rsa -in server.key -pubout -out server.pem# 生成CA私钥
openssl genrsa -out ca.key 1024# 生成csr文件
openssl req -new -key ca.key -out ca.csr# 生成自签名证书
openssl x509 -req -in ca.csr -signkey ca.key -out ca.crt# 生成server.csr文件
openssl req -new -key server.key -out server.csr# 生成带有ca签名的证书
openssl x509 -req -CA ca.crt -CAkey ca.key -CAcreateserial -in server.csr -out server.crt
```