美文网首页
一些软件的安装配置

一些软件的安装配置

作者: codinger | 来源:发表于2017-02-21 08:55 被阅读15次

    nodejs 环境变量设置问题

    administrator用户的变量
    NODE_PATH    
    C:\Program Files\nodejs\node_global\
    
    PATH
    C:\Users\Administrator\AppData\Roaming\npm
    
    系统变量
    Path
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;D:\Soft\SVN\bin;C:\Program Files\nodejs\
    
    

    nodejs 在 Linux 下面安装(center os 7)

    下载
    wget https://nodejs.org/dist/v6.10.3/node-v6.10.3.tar.gz

    解压
    tar xvf node-v6.10.3

    我下载是在这个目录下面
    usr/local/src/node-v4.2.3-linux-x86/bin 下得node命令

    /etc/profile下面添加

    # node
     export NODE_HOME=/usr/local/src/node-v6.10.3-linux-x64
     export PATH=$PATH:$NODE_HOME/bin  
     export NODE_PATH=$NODE_HOME/lib/node_modules 
    

    内网映射外网工具

    网站地址:https://dashboard.ngrok.com/get-started,下载你对应的版本安装、
    然后你需要注册一个账号得到 authtoken ,用来执行命令行如下图:

    image.png

    Start by downloading ngrok.
    Install your authtoken

    ./ngrok authtoken 5rbKB9sz7CVerj8m7JRLm_31mrpsCnM9qtas17QToYG
    

    Create your first secure tunnel 监听你本地的一个端口

    ./ngrok http 80
    

    可以得到一个外网的地址,通过外网地址可以访问内网了
    Open the web interface at http://localhost:4040 to inspect and replay requests

    Read the documentation for instructions on advanced features like adding HTTP authentication, setting custom subdomains and more.

    myeclipse 配置插件

    emmet 插件配置

    首先我们先下载 emmet jar 包,下载点下面[io.emmet.eclipse_1.0.0.201507221925.jar]
    (http://www.benhailong.com/usr/uploads/2016/12/401788919.jar)文件名改成io.emmet.eclipse_1.0.0.201507221925.jar 好了,接下来,我们进入到我们的根目录,找到\myeclipse2014\plugins(这个是2014版本的,10版本的我在下面介绍)然后把下载的 jar 文件复制到里边如果你是1.0版本的,需要放两个地方:一个是\dropins 还有有一个是在\u...\plugins 文件夹下面的也放一个好了,重启你的 Myeclipse 工具栏window-preferences- 搜索emmet-添加jsp后缀即可还有好像会有快捷键冲突 Ctrl + D 我们在工具栏window-preferences- 搜索key-修改emmet的快捷键就好了

    SVN配置

    下载 插件 http://subclipse.tigris.org/files/documents/906/49280/site-1.8.22.zip
    参看:https://jingyan.baidu.com/article/cbf0e500af8a1c2eaa289338.html
    将文件夹里的features文件夹和plugins文件夹复制。

    到MyEclipse的安装目录下的dropins文件夹,如下图,我的路径是E:\myeclipse\MyEclipse 10\dropins,在dropins文件夹里新建文件夹“SVN”,如下图所示。然后将复制的features文件夹和plugins文件夹拷贝到“SVN”文件夹里面,如下图。

    相关文章

      网友评论

          本文标题:一些软件的安装配置

          本文链接:https://www.haomeiwen.com/subject/hoyywttx.html