博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[转] Sublime Text3 配置 NodeJs 环境
阅读量:6563 次
发布时间:2019-06-24

本文共 2238 字,大约阅读时间需要 7 分钟。

前言

大家都知道,Sublime Text 安装插件一般从 Package Control 中直接安装即可,当我安装 node js 插件时候,直接通过Package Control 安装,虽然插件安装成功了,但是找不到配置文件 Nodejs.sublime-build 来更改一些配置 。于是去  官网上查看,只提供一种安装方式。

安装

git安装
  • MacOSX

    git clone https://github.com/tanepiper/SublimeText-Nodejs.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Nodejs

  • Windows

    git clone https://github.com/tanepiper/SublimeText-Nodejs.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Nodejs

  • Linux

    git clone https://github.com/tanepiper/SublimeText-Nodejs $HOME/.config/sublime-text-3/Packages/Nodejs

手动安装

通过地址去github上下载该包,解压放到Sublime Text3\Packages 目录下。

修改配置文件 (两处要修改)

Nodejs.sublime-settings

在 Sublie Text 3 Packages 文件目录下, 找到 Nodejs.sublime-settings 文件,更改以下内容

修改后的文件
{  // save before running commands  "save_first": true,  // if present, use this command instead of plain "node" // e.g. "/usr/bin/node" or "C:\bin\node.exe" "node_command": "C:\\Program Files\\nodejs\\node.exe" , // Same for NPM command "npm_command": "C:\\Program Files\\nodejs\\npm.cmd", // as 'NODE_PATH' environment variable for node runtime "node_path": false, "expert_mode": false, "ouput_to_new_tab": false }

注: 修改了两个地方,分别是 node_command 和 npm_command

Nodejs.sublime-build

在 Sublie Text 3 Packages 文件目录下, 找到 Nodejs.sublime-build 文件,更改以下内容

修改后的文件
"cmd": ["node", "$file"],  "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "selector": "source.js", "shell":true, "encoding": "utf8", "windows": { "cmd": ["taskkill","/F", "/IM", "node.exe","&","node", "$file"] }, "linux": { "cmd": ["killall node; node", "$file"] }, "osx": { "cmd": ["killall node; node $file"] } }

注: 修改了两个地方,分别是 encoding 和 windows 下的cmd ,windows 下的cmd命令是每次执行的时候都会kill 掉以前启动的nodejs 进程,这个命令有些错误,我们修改它,到达我们想要的效果

测试

新建一个 test.js 文件 输入以前内容

var http = require('http');var os = require('os'); http.createServer(function (request, response) { response.writeHead(200, { 'Content-Type': 'text/plain'}); response.end('Hello World\n'); }).listen(3000); console.log('Server running at http://127.0.0.1:3000/');

Ctrl +B 编译一下,会在Sublime Text 控制台 看到 Server running at http://127.0.0.1:3000/ ,接下来我们从浏览器打开 访问 http://127.0.0.1:3000/ .

结束语

以上就是 Sublime Text 排至 Node js 步骤 。

参考:  packagecontrol 官网 的Node js 插件.

转载于:https://www.cnblogs.com/chris-oil/p/7300620.html

你可能感兴趣的文章
胡侃游戏自动化测试
查看>>
《跟老男孩学习Linux运维:MySQL入门与提高实践》一书勘误
查看>>
bash小小小脚本
查看>>
linux sed命令详解
查看>>
Zabbix 3.4.6 新特性:历史数据支持 Elasticsearch
查看>>
oracle PLS-00363: 表达式 'A1' 不能用作赋值目标
查看>>
Centos6.5_salt自动部署zabbix_agentd(二)-- 部署windows以及linux系统
查看>>
rsync启动关闭shell脚本
查看>>
学习网页开发与网站设计必看的【代码逆袭】书
查看>>
Python 中文编码
查看>>
ubuntu-14.04编译安装PostgreSQL
查看>>
IAS的工作原理(二) 作为 RADIUS 代理的 IAS
查看>>
虽然离成功很遥远,33岁程序员提前感受退休在家看看孩子的日子
查看>>
shell脚本学习笔记系列--1
查看>>
RAC环境下做归档时出错ORA-29707
查看>>
Linux下载JDK1.7
查看>>
S2SH整合Shiro之:SessionContext must be an HTTP compatible implementation
查看>>
我的友情链接
查看>>
Hibernate 笔记
查看>>
ExtJS之 grid表格详解
查看>>