Go to file
2022-04-23 00:48:31 +02:00
.github docs: added logo in README.md 2020-06-07 13:39:45 +02:00
public chore(config): no index 2022-04-23 00:48:31 +02:00
src fix: GitMemo displayed commands 2022-03-02 14:36:50 +01:00
.browserslistrc chore: first commit 2020-04-07 18:06:35 +02:00
.eslintrc.js chore: first commit 2020-04-07 18:06:35 +02:00
.gitignore chore: first commit 2020-04-07 18:06:35 +02:00
babel.config.js chore: first commit 2020-04-07 18:06:35 +02:00
CHANGELOG.md feat: crontab generator 2020-07-23 23:25:15 +02:00
CODE_OF_CONDUCT.md chore: added CODE_OF_CONDUCT.md 2020-06-07 13:39:45 +02:00
CONTRIBUTING.md chore: added CONTRIBUTING.md 2020-06-07 13:39:45 +02:00
LICENSE chore: added LICENSE 2020-06-07 13:39:45 +02:00
package-lock.json 1.7.0 2020-07-23 23:25:52 +02:00
package.json 1.7.0 2020-07-23 23:25:52 +02:00
README.md feat: crontab generator 2020-07-23 23:25:15 +02:00
vercel.json feat: history mode 2020-06-23 10:10:58 +02:00
vue.config.js chore: pwa auto update 2020-07-08 13:35:24 +02:00

logo

Aggregated set of useful tools that every developer may need once in a while. Available here.

Functionalities roadmap

Here is an unordered list of the current functionalities, and some that may come.

  • Token generator
  • Uuid generator
  • String hash
  • Text encryption
  • Date format converter
  • Int base converter
  • Color format converter
  • Url encoder
  • Base 64 generator
  • Text information
  • Markdown editor
  • Lorem ipsum text generator
  • Git memo (cheat sheet)
  • QR code generator
  • Bip39 pass-phrase generator
  • Base 64 string converter
  • Crontab friendly generator
  • CSS memo (cheat sheet)
  • REGEX memo (cheat sheet) + tester?
  • Minify/un-minify
  • Image exif editor/remover
  • Image format converter?
  • Image cropper
  • Image resizer
  • HTTP client (w/ axios + cors proxy)
  • Math expression evaluator
  • Math expression graph

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

Project setup

Install dependencies by running the following command:

npm install

Then compiles and hot-reloads for development:

npm run serve

And to lint and fixe files, run:

npm run lint

Contribute

Pull requests are welcome ! Feel free to contribute.

Add a tool

To add a tool you just have to create a vue component in src/routes/tools, example:

<template>
    <v-card class="single-card">
        <v-card-title>My component</v-card-title>
        <v-card-text>Lorem ipsum dolor sit amet, consectetur adipisicing elit.</v-card-text>
    </v-card>
</template>

<script>
    export default {
        name: "My component"
    }
</script>

<style scoped lang="less">
</style>

Then, update the file router.js specifying info of the component. Use fontawesome 5 for icons.

Credits

Coded with ❤️ by Corentin Thomasset.

This project is continuously deployed using vercel.com.

License

This project is under the MIT license.