首页 > 服务器 > Linux服务器 > 正文

Linux环境下nodejs的安装图文教程

2024-09-05 23:03:06
字体:
来源:转载
供稿:网友

1、在官网下载nodejs,选择左边的。

linux,安装,nodejs

2、选择文件右击点击extract here进行解压

linux,安装,nodejs

3、进入bin目录,右击选择properties,解压文件可以随意放在系统里一个位置。复制location里的路径

linux,安装,nodejslinux,安装,nodejs

4、添加路径 进入.bashrc文件,在末尾处添加步骤三的location里的路径。

linux,安装,nodejs

linux,安装,nodejs

6、在终端输入source .bashrc按回车键,再输出路径:echo $PATH检查路径是否已经添加成功

linux,安装,nodejs

7、检测是否安装nodejs成功。在js文件目录下点击右键,再点击open in terminal,进入终端,输入node 文件名(我安装时文件名为qishuixian.js) 

consloe.log("1111")

linux,安装,nodejs linux,安装,nodejs

8、在浏览器测试:server.js源码:

var http = require('http'); http.createServer(function (request, response) {  response.writeHead(200,  {'Content-Type':'text/html;charset=utf-8'});   if(request.url!=="/favicon.ico"){   console.log('访问');    response.write('hello,world');   response.end('你好,世界');  } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/'); 


linux,安装,nodejs

linux,安装,nodejs

以上所述是小编给大家介绍的Linux环境下nodejs的安装图文教程,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对VEVB武林网网站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表