Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Directus | 21,693 | 50 | 2 days ago | 55 | September 22, 2022 | 220 | other | TypeScript | ||
The Modern Data Stack 🐰 — Directus is an instant REST+GraphQL API and intuitive no-code data collaboration app for any SQL database. | ||||||||||
Ruoyi Vue Pro | 15,639 | a day ago | 4 | August 11, 2022 | 17 | mit | Java | |||
🔥 官方推荐 🔥 RuoYi-Vue 全新 Pro 版本,优化重构所有功能。基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 微信小程序,支持 RBAC 动态权限、数据权限、SaaS 多租户、Flowable 工作流、三方登录、支付、短信、商城等功能。你的 ⭐️ Star ⭐️,是作者生发的动力! | ||||||||||
Beekeeper Studio | 12,980 | 3 days ago | 488 | gpl-3.0 | Vue | |||||
Modern and easy to use SQL client for MySQL, Postgres, SQLite, SQL Server, and more. Linux, MacOS, and Windows. | ||||||||||
Coolify | 7,812 | 2 days ago | 263 | apache-2.0 | Svelte | |||||
An open-source & self-hostable Heroku / Netlify alternative. | ||||||||||
Zfile | 7,410 | 7 hours ago | 45 | mit | Java | |||||
在线云盘、网盘、OneDrive、云存储、私有云、对象存储、h5ai、上传、下载 | ||||||||||
Mall4cloud | 4,687 | 6 days ago | 15 | agpl-3.0 | Vue | |||||
⭐️⭐️⭐️ Springcloud商城系统 微服务商城系统 O2O商城系统 小程序商城 PC商城 H5商城 APP商城 Java商城 分销商城 多用户商城 uniapp商城 | ||||||||||
Music Website | 3,957 | 5 days ago | 93 | apache-2.0 | Vue | |||||
🎧 Vue + SpringBoot + MyBatis 音乐网站 | ||||||||||
Xboot | 3,640 | 7 months ago | 8 | gpl-3.0 | Java | |||||
基于Spring Boot 2.x的一站式前后端分离快速开发平台XBoot 微信小程序+Uniapp 前端:Vue+iView Admin 后端:Spring Boot 2.x/Spring Security/JWT/JPA+Mybatis-Plus/Redis/Elasticsearch/Activiti 分布式限流/同步锁/验证码/SnowFlake雪花算法ID 动态权限 数据权限 工作流 代码生成 定时任务 社交账号 短信登录 单点登录 OAuth2开放平台 客服机器人 数据大屏 暗黑模式 | ||||||||||
Mall4j | 3,577 | 6 days ago | 8 | agpl-3.0 | Java | |||||
⭐️⭐️⭐️ 电商商城 java电商商城系统 PC商城 H5商城 APP商城 Java商城 O2O商城 | ||||||||||
Aurora | 2,168 | 9 days ago | 12 | apache-2.0 | Vue | |||||
基于SpringBoot+Vue开发的个人博客系统 |
本脚手架主要致力于前端工程师的快速开发、一键部署等快捷开发框架,主要目的是想让前端工程师在一个阿里云服务器上可以快速开发部署自己的项目。本着前端后端融合统一的逻辑进行一些轮子的整合、并加入了自己的一些脚手架工具,第一次做脚手架的开发,如有问题,请在issue上提出,如果有帮助到您的地方,请不吝赐个star~
#####技术栈选择
#####基本功能模块实现
#####基本模块举例 1.登录页面
#####使用流程
// 进入sql命令行
$ mysql -u root -p
// 创建名为nodesql的数据库
$ create database nodesql
git clone https://github.com/fanshyiis/ONE-sys
cd ONE-sys
// 安装插件
cnpm i 或 npm i 或者 yarn add
// 安装link
sudo npm link
// 然后就能使用命令行工具了
one start
// 或者不愿意使用命令行的同学可以
yarn run serve
#####主要代码解析
one -h
启动项目
yarn run v1.3.2
$ pm2 restart ./server/index.js && vue-cli-service serve
Use --update-env to update environment variables
[PM2] Applying action restartProcessId on app [./server/index.js](ids: 0,1)
[PM2] [index](0) ✓
[PM2] [one-sys](1) ✓
┌──────────┬────┬─────────┬─────────┬───────┬────────┬─────────┬────────┬─────┬───────────┬───────────┬──────────┐
│ App name │ id │ version │ mode │ pid │ status │ restart │ uptime │ cpu │ mem │ user │ watching │
├──────────┼────┼─────────┼─────────┼───────┼────────┼─────────┼────────┼─────┼───────────┼───────────┼──────────┤
│ index │ 0 │ 0.1.0 │ fork │ 77439 │ online │ 2640 │ 0s │ 0% │ 15.4 MB │ koala_cpx │ disabled │
│ one-sys │ 1 │ 0.1.0 │ cluster │ 77438 │ online │ 15 │ 0s │ 0% │ 20.2 MB │ koala_cpx │ disabled │
└──────────┴────┴─────────┴─────────┴───────┴────────┴─────────┴────────┴─────┴───────────┴───────────┴──────────┘
Use `pm2 show <id|name>` to get more details about an app
INFO Starting development server...
98% after emitting CopyPlugin DONE Compiled successfully in 10294ms16:31:55
App running at:
- Local: http://localhost:8080/
- Network: http://192.168.7.69:8080/
Note that the development build is not optimized.
To create a production build, run yarn build.
页面展示
[[email protected] ~]# cd /home/
[[email protected] home]# ls
dist server test
[[email protected] home]#
location ^~ /api {
proxy_pass http://127.0.0.1:3000;
}
location ^~ /redAlert/ {
root /home/dist/;
try_files $uri $uri/ /index.html =404;
}
location ^~ /file/ {
alias /home/server/controller/public/;
}
location / {
root /home/dist/;
index index.html index.htm;
}
其他方面如同本地配置
有问题可以加群联系
最后请star一个吧~~~