Tidak Ada Deskripsi

QingFeng 458da55387 add new tools json-to-java entity 4 bulan lalu
.github a0bc3468b2 chore(issues): prevent empty issues (#1078) 6 bulan lalu
.vscode 847323ccba docs(ide): updated vscode extensions settings (#472) 1 tahun lalu
_templates ee4c853b9f refactor(ui): new c-table ui component (#665) 1 tahun lalu
locales 2c2fb216e3 feat(i18n): added German translation (#1038) 6 bulan lalu
public fcf4cfe64d refactor(share): new share banner 2 tahun lalu
scripts 7f5fa00147 feat(i18n): added missing locale files in tools (#863) 9 bulan lalu
src 458da55387 add new tools json-to-java entity 4 bulan lalu
.dockerignore 020e9cbe41 refactor(docker): improved docker config (#700) 1 tahun lalu
.eslintrc-auto-import.json dfa1ba8554 feat(ui): added c-select in the ui lib (#550) 1 tahun lalu
.eslintrc.cjs 6f93cba3da feat(copy): support legacy copy to clipboard for older browser (#581) 1 tahun lalu
.gitignore cf382b5a10 chore(e2e): execute e2e against built app (#511) 1 tahun lalu
.nvmrc eea9f91276 chore(deps): update dependency node to v18.18.2 (#674) 1 tahun lalu
.prettierrc 02c4963531 refactor(lint): externalization of prettier for simpler IDE support 2 tahun lalu
.versionrc db21c5a1be chore: added standard-version 2 tahun lalu
CHANGELOG.md 81cf6b5483 docs(changelog): update changelog for 2024.05.13-a0bc346 6 bulan lalu
Dockerfile 7d94e11cee fix(dockerfile): revert replacement of nginx image with non-privileged one (#716) 1 tahun lalu
LICENSE eff7c23ebb chore: added license file 2 tahun lalu
README.md 7a70dbbe0c fix(doc): updated create new tool command in readme (#762) 1 tahun lalu
auto-imports.d.ts 5c3bebfe62 chore(deps): updated unplugin-auto-import (#504) 1 tahun lalu
components.d.ts 124284278f refactor(auto-imports): regen auto imports 6 bulan lalu
env.d.ts ad202bd372 revert(pwa): fallback to autoUpdate 1 tahun lalu
index.html 63045951e1 feat(config): allow app to run in a subfolder via BASE_URL (#461) 1 tahun lalu
netlify.toml 93799af83c chore(config): netlify deployment support (#443) 1 tahun lalu
nginx.conf 972ffe6f69 fix(docker): nginx config to redirect to index.html 1 tahun lalu
package.json 30144aa3f5 feat(base64): Base64 enhancements (#905) 6 bulan lalu
playwright.config.ts 23f82d956a fix(bcrypt tool): allow salt rounds up to 100 (#987) 7 bulan lalu
pnpm-lock.yaml 30144aa3f5 feat(base64): Base64 enhancements (#905) 6 bulan lalu
renovate.json 363c2e47e6 chore(deps): added renovate.json (#477) 1 tahun lalu
tsconfig.app.json 76b2761d62 chore(deps): switched to fucking typescript v5 (#501) 1 tahun lalu
tsconfig.json 64c92a661c chore: first commit 2 tahun lalu
tsconfig.vite-config.json 76b2761d62 chore(deps): switched to fucking typescript v5 (#501) 1 tahun lalu
tsconfig.vitest.json 76b2761d62 chore(deps): switched to fucking typescript v5 (#501) 1 tahun lalu
unocss.config.ts 478192065e feat(new tool): pdf signature checker (#745) 1 tahun lalu
vercel.json 2e046ad09f feat(config): added vercel.json 2 tahun lalu
vite.config.ts dc0461595f feat(i18n): get locales on build (#880) 9 bulan lalu

README.md

logo

Useful tools for developer and people working in IT. Have a look !.

Functionalities and roadmap

Please check the issues to see if some feature listed to be implemented.

You have an idea of a tool? Submit a feature request!

Self host

Self host solutions for your homelab

From docker hub:

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

From github packages:

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

Other solutions:

Contribute

Recommended IDE Setup

VSCode with the following extensions:

with the following settings:

{
  "editor.formatOnSave": false,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "i18n-ally.localesPaths": ["locales", "src/tools/*/locales"],
  "i18n-ally.keystyle": "nested"
}

Type Support for .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

Project Setup

pnpm install

Compile and Hot-Reload for Development

pnpm dev

Type-Check, Compile and Minify for Production

pnpm build

Run Unit Tests with Vitest

pnpm test

Lint with ESLint

pnpm lint

Create a new tool

To create a new tool, there is a script that generate the boilerplate of the new tool, simply run:

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

It will create a directory in src/tools with the correct files, and a the import in src/tools/index.ts. You will just need to add the imported tool in the proper category and develop the tool.

Contributors

Big thanks to all the people who have already contributed!

contributors

Credits

Coded with ❤️ by Corentin Thomasset.

This project is continuously deployed using vercel.com.

Contributor graph is generated using contrib.rocks.

License

This project is under the GNU GPLv3.