Collection of handy online tools for developers, with great UX.
Find a file
2024-12-19 09:19:24 +08:00
.github feat(sponsor): added sponsor banner (#1422) 2024-12-14 12:15:18 +01:00
.vscode
_templates/generator/ui-component refactor(ui): new c-table ui component (#665) 2023-10-14 22:45:14 +00:00
locales fix(locales): update license from MIT to GPL-3.0 in language files (#1419) 2024-12-11 19:33:24 +00:00
public
scripts feat(i18n): added missing locale files in tools (#863) 2024-02-01 17:05:05 +00:00
src Merge 01b7b5ec47 into 08d977b8cd 2024-12-19 09:19:24 +08:00
.dockerignore refactor(docker): improved docker config (#700) 2023-10-30 17:11:16 +00:00
.eslintrc-auto-import.json
.eslintrc.cjs
.gitignore
.nvmrc chore(deps): update dependency node to v18.18.2 (#674) 2023-10-22 10:26:05 +02:00
.prettierrc
.versionrc
auto-imports.d.ts
CHANGELOG.md docs(changelog): update changelog for 2024.10.22-7ca5933 2024-10-22 10:25:36 +02:00
components.d.ts feat(new tool): Regex Tester (and Cheatsheet) (#1030) 2024-09-20 18:39:40 +00:00
Dockerfile fix(dockerfile): revert replacement of nginx image with non-privileged one (#716) 2023-11-02 09:10:13 +01:00
env.d.ts
index.html
LICENSE
netlify.toml
nginx.conf
package.json feat(sponsor): added sponsor banner (#1422) 2024-12-14 12:15:18 +01:00
playwright.config.ts fix(bcrypt tool): allow salt rounds up to 100 (#987) 2024-04-15 09:43:12 +02:00
pnpm-lock.yaml feat(sponsor): added sponsor banner (#1422) 2024-12-14 12:15:18 +01:00
README.md feat(sponsor): added sponsor banner (#1422) 2024-12-14 12:15:18 +01:00
renovate.json
tsconfig.app.json
tsconfig.json
tsconfig.vite-config.json
tsconfig.vitest.json
unocss.config.ts feat(new tool): pdf signature checker (#745) 2023-11-12 22:22:41 +00:00
vercel.json
vite.config.ts feat(i18n): get locales on build (#880) 2024-02-11 00:33:52 +01:00

logo

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

Sponsors

Renderize banner

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

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.

IT Tools - Collection of handy online tools for devs, with great UX | Product Hunt IT Tools - Collection of handy online tools for devs, with great UX | Product Hunt

License

This project is under the GNU GPLv3.