开源工具名称 | 用途 | 参考及备注 |
zcurd | zcurd是一个通用的后台管理系统,有完善的用户、菜单权限管理及表单管理的开发方案。 | https://www.oschina.net/p/zcurd?hmsr=aladdin1e1 简单业务可以通过[表单配置]快速生成,特定业务通过代码生成,完成具体业务。 |
taro | Taro 是一个开放式跨端跨框架解决方案,支持使用 React/Vue/Nerv 等框架来开发 。 | Taro 介绍 | Taro 文档 现如今市面上端的形态多种多样,Web、React Native、微信小程序等各种端大行其道。当业务要求同时在不同的端都要求有所表现的时候,只编写一套代码就能够适配到多端的能力就显得极为需要。 |
libreoffice | 一个linux上word转pdf的开源组件 | public static int convertPDF(String libreOfficeVersion, String filePath, String targetFilePath) throws Exception { String command = libreOfficeVersion + filePath + targetFilePath; Process process = Runtime.getRuntime().exec(command); int exitStatus = process.waitFor(); if (exitStatus == 0) { exitStatus = process.exitValue(); } // 销毁子进程 process.destroy(); return exitStatus; } |
tailwind | 一个前端CSS框架 | https://tailwindui.com/?ref=top |