All Projects → silently9527 → Toolsetideaplugin

silently9527 / Toolsetideaplugin

程序员常用的工具集Idea插件,帮助开发人员提升效率

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Toolsetideaplugin

uuid-generator-plugin
An IntelliJ Idea plugin to generate UUID (Universally Unique Identifier), ULID (Universally Unique Lexicographically Sortable Identifier) and CUID (Collision Resistant Unique Identifier)
Stars: ✭ 30 (-87.9%)
Mutual labels:  idea, idea-plugin
Mvpautocodeplus
🔌An IDEA/Android Studio plug-in that automatically generates an MVP template code
Stars: ✭ 176 (-29.03%)
Mutual labels:  idea, idea-plugin
RedsoftYapiUpload
一个快速生成接口文档的IntelliJ IDEA的Yapi上传小插件,如果给你带来了方便,请给个Star 谢谢
Stars: ✭ 51 (-79.44%)
Mutual labels:  idea, idea-plugin
intelliroutes
Support for Play Routes in IntelliJ IDEA
Stars: ✭ 21 (-91.53%)
Mutual labels:  idea, idea-plugin
Intellij Mybaitslog
用于在IDEA将Mybatis的SQL日志还原为可执行的SQL,Used to restore Mybatis SQL logs to executable SQL in IDEA,
Stars: ✭ 501 (+102.02%)
Mutual labels:  idea, idea-plugin
Intellij Haxe
Haxe plugin for IntelliJ Platform based IDEs (IDEA, Android-Studio)
Stars: ✭ 188 (-24.19%)
Mutual labels:  idea, idea-plugin
NutzCodeInsight
Intellij idea plugin for Nutz Web Framwork
Stars: ✭ 35 (-85.89%)
Mutual labels:  idea, idea-plugin
intellij-treeInfotip
IDEA项目结构树中的节点添加显示自定义备注文本IDEA DirectoryNode adds custom text for display
Stars: ✭ 48 (-80.65%)
Mutual labels:  idea, idea-plugin
Yapiideauploadplugin
yapi idea 上传插件,快速生成文档
Stars: ✭ 288 (+16.13%)
Mutual labels:  idea, idea-plugin
aw-watcher-jetbrains
This extension allows the open source tracking tool ActivityWatch to keep track of the projects and coding languages you use in jetbrains IDEs.
Stars: ✭ 36 (-85.48%)
Mutual labels:  idea, idea-plugin
Awesome Idea
IntelliJ IDEA资源一网打尽
Stars: ✭ 124 (-50%)
Mutual labels:  idea, idea-plugin
Idea Conventional Commit
Context and template-based completion for conventional/semantic commits.
Stars: ✭ 115 (-53.63%)
Mutual labels:  idea, idea-plugin
Arthas Idea Plugin
arthas idea plugin 更简单的使用arthas的IDEA 插件
Stars: ✭ 211 (-14.92%)
Mutual labels:  idea, idea-plugin
Api Generator
Api Generator是一款可以自动解析Controller类抽取REST接口信息并自动上传YApi的IDEA插件。YApi好伴侣,从此维护文档再也不是事儿了!
Stars: ✭ 139 (-43.95%)
Mutual labels:  idea-plugin
Flutter Snippets
An IntelliJ IDEA & Android Studio plugin that adds Live Templates to your IDE saving time writing the boilerplate in Flutter.
Stars: ✭ 136 (-45.16%)
Mutual labels:  idea-plugin
Stumanager
🎓 Student Information Management System (学生信息管理系统)
Stars: ✭ 133 (-46.37%)
Mutual labels:  idea
Crud Intellij Plugin
一个增删改查的idea插件,可以根据数据库表结构,帮助您快速生成model、dao、service、controller等相关代码。同时支持MyBatis、JPA、MybatisPlus。
Stars: ✭ 217 (-12.5%)
Mutual labels:  idea-plugin
Open In Editor
NPM package to open a file in editor
Stars: ✭ 187 (-24.6%)
Mutual labels:  idea
Leetcode Editor
Do Leetcode exercises in IDE, support leetcode.com and leetcode-cn.com, to meet the basic needs of doing exercises.Support theoretically: IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion GoLand DataGrip Rider MPS Android Studio
Stars: ✭ 2,222 (+795.97%)
Mutual labels:  idea
Masterplan
MasterPlan is a project management software / visual idea board software. It attempts to be easy to use, lightweight, and fun.
Stars: ✭ 221 (-10.89%)
Mutual labels:  idea

Programmer toolkit

Github地址: https://github.com/silently9527/ToolsetIdeaPlugin

Gitee地址: https://gitee.com/silently9527/ToolsetIdeaPlugin

觉得好用的小伙伴记得小手一抖 star 哟

背景

自己在开发的过程中经常会使用一些在线的工具,比如:时间戳转日期,JSON格式化等等;考虑想把这些常用的功能都做成IDEA插件,在使用的时候就不用去网上寻找工具,在IDEA中就可以快速完成提升开发人员开发效率;

How to use

  1. 双击control或者点工具类图标即可弹出RunAnything窗口

  1. 在RunAnything中输入?查看 toolkit 命令

  1. 输入toolkit即可看到所有支持的命令

  1. 选择需要使用的命令,例如:SQL转elasticSearch语句、二维码生成

How to install

第一种方式:下载源码自己打包安装

第二种方式:

  1. 关注微信公众号:贝塔学java,回复:toolkit 即可获取已打包的插件,最新插件版本1.0.3
  2. 打包idea的插件安装界面 -> install plugin from disk ,选择下载的最新插件包,重启idea接口生效

支持的命令

命令 说明
toolkit date 日期转时间戳
toolkit timestamp 时间戳转日期
toolkit json JSON格式化
toolkit sql2dsl SQL转elasticSearch语句
toolkit url encode URL编码
toolkit url decode URL解码
toolkit base64 encode base64编码
toolkit base64 decode base64解码
toolkit phone 手机号归属地
toolkit ip IP归属地
toolkit md5 MD5加密
toolkit sha1 SHA1加密
toolkit sha224 SHA224加密
toolkit sha256 SHA256加密
toolkit sha384 SHA384加密
toolkit sha512 SHA512加密
toolkit uuid UUID随机值
toolkit regular 正则表达式
toolkit qrcode encode 生成二维码(支持插入Logo)

计划中的命令

命令 说明
toolkit nat 内网穿透(方便微信、支付宝等后台开发)
toolkit cron Cron表达式
toolkit file minify js/css混淆压缩
toolkit file download 文件下载
toolkit qrcode decode 二维码解析

欢迎小伙伴留言希望支持的命令

测试通过IDEA的版本

测试通过的版本如下,如果其他版本出现问题,欢迎给我留言

IDE 版本
Intellij IDEA 2019、2020

微信公众号

公众号

我的技术博客

https://silently9527.cn/

捐赠研发

如果您认为此项目帮到了您的开发工作,您可以捐赠我一杯可乐(相信这比打赏主播更有意义)。

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].