键入'node server.js'时没有响应

时间:2015-06-28 06:01:06

标签: javascript node.js

我正在尝试使用scotch.io的说明编写一个简单的TODO MEAN应用程序。

server.js具有以下nodejs相关代码。

server.js

// set up ========================
var express  = require('express');
var app      = express();                               // create our app w/ express
var mongoose = require('mongoose');                     // mongoose for mongodb
var morgan = require('morgan');             // log requests to the console (express4)
var bodyParser = require('body-parser');    // pull information from HTML POST (express4)
var methodOverride = require('method-override'); // simulate DELETE and PUT (express4)

// configuration =================

mongoose.connect('mongodb://node:nodeuser@mongo.onmodulus.net:27017/uwO3mypu');     // connect to mongoDB database on modulus.io

app.use(express.static(__dirname + '/public'));                 // set the static files location /public/img will be /img for users
app.use(morgan('dev'));                                         // log every request to the console
app.use(bodyParser.urlencoded({'extended':'true'}));            // parse application/x-www-form-urlencoded
app.use(bodyParser.json());                                     // parse application/json
app.use(bodyParser.json({ type: 'application/vnd.api+json' })); // parse application/vnd.api+json as json
app.use(methodOverride());

// listen (start app with node server.js) ======================================
app.listen(8080);
console.log("App listening on port 8080");

在Ubuntu终端上,输入“node server.js”以运行服务器。

我没有回应。

satyajit@Sunny:~/Documents/git repositories/mean-todo-app$ node server.js
satyajit@Sunny:~/Documents/git repositories/mean-todo-app$ node server.js
satyajit@Sunny:~/Documents/git repositories/mean-todo-app$ ls -l
total 16
drwxrwxr-x 7 satyajit satyajit 4096 Jun 28 11:03 node_modules
-rw-rw-rw- 1 satyajit satyajit  357 Jun 28 09:41 package.json
drwxrwxr-x 2 satyajit satyajit 4096 Jun 27 20:37 public
-rw-rw-rw- 1 satyajit satyajit 1455 Jun 28 09:41 server.js

任何人都可以告诉我哪里出错或者我错过了任何需要做的事情吗?

1 个答案:

答案 0 :(得分:3)

如Satyajit所述,ubuntu使用nodejs server.js

我只是说人们有时会因为它而遇到各种各样的问题,因为你安装的很多模块都会认为node.js的可执行文件是node(不要谈论有关的教程)互联网)。

为了获得更好的兼容性,我建议你运行这个命令:

sudo ln -s /usr/bin/nodejs /usr/bin/node

这将为" node"创建一个符号链接。然后,您可以使用

node server.js