Tool-Software-Plugin

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_30856231/article/details/79488103

本文列举一些前后端开发常用软件:

google谷歌浏览器 source 调试工具

F10 查看最终调试效果。
ctrl + p :搜索调试文件

调试按钮功能:

  • 1、停止断点调试
  • 2、不跳入函数中去,继续执行下一行代码(F10)
  • 3、跳入函数中去(F11)
  • 4、从执行的函数中跳出
  • 5、禁用所有的断点,不做任何调试
  • 6、程序运行时遇到异常时是否中断的开关

工具

  • 【hijson】:json格式化工具
  • 【postman】:Http请求模拟工具
  • 【lantern】:
  • 【navicat 】: 数据库
  • 【total 】control:电脑控制手机助手
  • 【mumu模拟器】:手机模拟器
  • 【linux 】xshell5 –> 上传文件: 下载xftp
  • 【AIKF智能机器人】
  • 【pm2】 Node应用的进程管理器

【Chrome 插件】
+ Flash Video Downloader

【cordova】

https://blog.csdn.net/qq_30856231/article/details/77677738

【phpstorm】

Duplicate line or selection 复制本行
move line down 向下移
move line up 向上移

【SVN】

【svn 查看文件】
右键–》tortoiseSVN–》repo-browser

【svn 查看文件】
右键–》tortoiseSVN–》repo-browser

【解决 webstrom 连不上 svn Can’t use Subversion command line client:svn】
https://my.oschina.net/zhengweishan/blog/523166

【Cannot run program “svn”】
http://blog.csdn.net/wandrong/article/details/58136625

【Git、 SVN 软件常见报错解决方法】
http://www.cnblogs.com/dunitian/p/4522988.html

【关于SVN同步本地用法】

【Version Control】
+ local Changes 本地修改的文件和准备上传的
+ 新建Not commit目录,把不上传的文件拖至目录中
+ Repository SVN提交记录
+ Incoming 更新SVN文件

【svn】 忽略上传某个文件
选中文件–右键–tortoiseSvn–remove from ignore list–*.abc(recursuvely)
recursively 表示地柜删除(文件夹--下级文件夹--下级文件夹。。。)

【SVN】 clean up 解决方法
https://blog.csdn.net/superch0054/article/details/38668017
+ 1.将sqlite3.exe放到svn 项目的主目录下,和.svn目录同级下。
+ 2.打开命令行执行:sqlite3 .svn/wc.db "select * from work_queue"查看记录。
+ 3.执行sqlite3 .svn/wc.db "delete from work_queue".把队列清空。
+ 4.执行sqlite3 .svn/wc.db "select * from work_queue".确认一下是否已经清空队列
+ 5.现在可以clean up了。在弹框中把 break locks 选项选上,进行clean up。

【webstrom】

  • 设置缩进
    file - setting - editor - code style - jsvascript

  • 内存优化 卡顿 配置
    找到WebStorm.exe.vmoptions这个文件,路径如下
    webstorm安装主目录>bin>WebStorm.exe.vmoptions
    更改为
    第二行:-Xms526m
    第三行:-Xmx1024m
    (ps:这里-Xms最大值不能超过1024,否则webstorm将无法打开)
    重启
    ps:本地电脑64位,同时修改了WebStorm64.exe.vmoptions

  • webstrom 注释
    // todo 修改标签 关闭弹框

  • webstorm 允许他人通过ip访问项目
    网址:

    http://blog.csdn.net/u012125121/article/details/73526847

  • webstrom 添加自定义模板
    setting – file and code template –添加自己的模板文件,和文件里写的内容。新建文件就可以直接新建这些内容

  • webstrom – 右上角启动脚本 – 设置快速启动
    点击 下拉框 + 新建项目
    :用户平台 – 选择node.js – 右边起名字 – working directory:选工作目录 – javascript file:选启动文件 app.js

  • webstrom 断点调试
    右上角 – edit configurations – 选七星瓢虫调试

常用插件

Jquery:
+ 【jQuery-validate】:表单验证插件:form表单校验
http://www.jq22.com/jquery-info3350
http://www.runoob.com/jquery/jquery-plugin-validate.html

  • 【百度分享】
    http://share.baidu.com/code/advance

    html

    <span class="article_icon_btn"><i>
    <img class="share bdshare_b bdsharebuttonbox shareDiv bdshare-button-style0-16" src="/images/ic_artiele_share.png" 
                  data="{'text':'<%=item.title%>', 'title':'<%=item.title%>', 'url':'article/detail?id=<%=item.id%>'}"
                       id="bdshare" onclick="getShareArticleTitle($(this))" alt="分享" title="分享"/>
    <a data-cmd="more" class="shareC bds_more phib_share">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></i></span>

    js

    <script type="text/javascript" id="bdshare_js" data="type=tools" src="http://bdimg.share.baidu.com/static/js/bds_s_v2.js?cdnversion=420490"></script>
    <script type="text/javascript" id="bdshell_js" src=""></script>

    下滑加载-js

    $('#bdshell_js').remove();
    var node = document.createElement('script');
    document.body.appendChild(node).src = 'http://bdimg.share.baidu.com/static/js/shell_v2.js?cdnversion=' + ~(-new Date() / 36e5);
    $(node).attr('id','bdshell_js');

【富文本编辑器】

  • NicEdit
    http://www.jq22.com/jquery-info7044
  • ckEditor
    https://ckeditor.com/
  • summernote
    https://blog.csdn.net/frankcheng5143/article/details/70990945

【mint-ui组件】

【URL】:http://mint-ui.github.io/#!/zh-cn

【postman使用方法】

  • 【1】选择方法:post/get/put
  • 【2】填充header值 key->value 键值方式
  • 【3】填充body值 选–>raw–>json格式:{“”:”“,”“:”“}
    eg:{"toAddress":"[email protected]","subJect":"asudhia","content":"邮件内容"}
  • 【4】body中有

【postman】 接口对接的时候

  • post 请求网址:
  • 用 raw
  • 调成json格式 发请求

【postman】 支持修改标签名,保存相关请求历史及数据

ctrl + s 保存历史、修改名称

【Hbuilder】 打包APP

https://jingyan.baidu.com/article/454316ab1b8836f7a7c03ac7.html?qq-pf-to=pcqq.c2c

【KOA】 基于nodejs的下一代web开发框架

猜你喜欢

转载自blog.csdn.net/qq_30856231/article/details/79488103