gpt4 book ai didi

node.js - Node 服务器无法启动

转载 作者:太空宇宙 更新时间:2023-11-04 00:26:09 26 4
gpt4 key购买 nike

问题:无法启动 Node 服务器

平台:Windows 10 上 Ubuntu 上的 Bash

当前关注tutorial在 MEAN 上建立博客

安装后运行的命令:

apt-get install npm
npm init
npm install express --save
node server.js

最后一个命令node server.js应该启动 Node 服务器。

但是我的 bash 命令行上没有任何反应。 enter image description here

server.js codes:

enter image description here

command node-v (node version not found):

enter image description here

However, Node is already installed:

enter image description here

Accessing localhost:3000

enter image description here

最佳答案

在 Ubuntu(以及 Debian)上,为 Node.js 安装的正确软件包称为 nodejs:

$ sudo apt-get install nodejs

但是,我的经验是,这通常会安装过时的 Node 版本,这不太好。它还会安装可执行文件名称为 nodejs 的解释器,而不是您所期望的 node

或者,您可以添加 Node.js 的官方二进制分发存储库,它允许您安装更新版本的 Node(v6 甚至 v7)。这些库也比 Ubuntu/Debian 存储库更好地保持最新状态。

该过程已记录here ,但如果您想安装 Node v6,您将运行以下代码:

$ curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
$ sudo apt-get install -y nodejs

在运行上述命令之前,最好删除以前安装的所有软件包(npmnodenodejs)。

关于node.js - Node 服务器无法启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42717887/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com