竟然不用寫代碼!一款可視化 Web 管理后臺生成工具(好用的web可視化開發(fā)工具)
大家好,我是歐盆索思(opensource),每天為你帶來優(yōu)秀的開源項(xiàng)目!
今天給大家推薦一款利刃:一款基于 Go 語言的可視化 Web 管理后臺生成工具。
項(xiàng)目名稱:go-sword,地址:https://github.com/sunshinev/go-sword,Star 數(shù):240。
它能滿足你哪些需求?
- 你有代碼潔癖,不希望工具過多干擾你的業(yè)務(wù)邏輯
- 你希望生成的頁面可以自定義修改,來實(shí)現(xiàn)更多的功能
- 你希望代碼特別簡單易讀,且容易自定義
- 你希望能快速構(gòu)建管理后臺,哪怕僅僅是將數(shù)據(jù)庫里的數(shù)據(jù)可視化
- 你希望一鍵生成CRUD,無需復(fù)雜操作
- 你希望使用 iView 的組件,快速構(gòu)建頁面
根據(jù)MySQL的表結(jié)構(gòu),創(chuàng)建完整的管理后臺界面,開發(fā)者無需再重復(fù)手動(dòng)的創(chuàng)建具有CRUD能力的頁面 只需要點(diǎn)擊按鈕即可生成完整的管理后臺。
安裝:
go get -u github.com/sunshinev/go-sword
啟動(dòng):
go-sword -db {db_database} -password {db_password} -user {db_uesr} -module {module_name}
其中 {} 替換為你的。比如:go-sword -db blog -password 123456 -user root -module go-sword-app
執(zhí)行后會(huì)看到如下信息,表示成功:
Go-Sword will create new project named go-sword-app in current directory[Server info]Server port : 8080Project module : go-sword-app[db info]MySQL host : localhostMySQL port : 3306MySQL user : rootMySQL password : 123456Start successful, server is running ...Please request: http://localhost:8080
更多說明移步項(xiàng)目首頁:https://github.com/sunshinev/go-sword
有后臺開發(fā)需求的,可以下載嘗試下。