IT-Tools-zh_CN版s版

为开发人员提供的方便的在线工具集合,具有出色的用户体验。【深度适配简体中文】

https://github.com/angelofan/it-tools-zh_CN?tab=readme-ov-file

下载项目

git clone https://gitee.com/angelofan/it-tools.git

安装依赖

cd it-tools
npm install

启动实时重载开发

npm run dev

编译

npm run build

使用 ESLint 进行检查

npm run lint

创建一个新工具

要创建新工具,有一个脚本可以生成新工具的样板文件,只需运行:

 npm run script:create:tool your-tool-name

它将在 “src/tools” 中创建一个包含正确文件的目录,并在 “src/tools/index.ts” 中自动导入。您只需要将导入的工具添加到适当的类别中并开发该工具。

IT-Tools原版

对于开发人员和 IT 工作人员来说非常有用的工具。

https://github.com/CorentinTh/it-tools

Docker 部署

从 docker hub:

docker run -d --name it-tools --restart unless-stopped -p 8080:80 corentinth/it-tools:latest

从 github 包:

 docker run -d --name it-tools --restart unless-stopped -p 8080:80 ghcr.io/corentinth/it-tools:latest

创建新工具

要创建一个新工具,有一个脚本可以生成新工具的样板,只需运行:访问it-tools服务

 pnpm run script:create:tool my-tool-name

它将创建一个包含正确文件的目录,并在 中导入。您只需要将导入的工具添加到适当的类别中并开发该工具即可。src/tools,src/tools/index.ts

访问it-tools服务