node app.js命令在ubuntu终端中不起作用

时间:2016-03-27 11:27:28

标签: javascript node.js ubuntu

我正在使用ubuntu。 我安装了nodejs。 我用节点创建了一个rest api。 app.js是包含代码的文件。

   var express = require('express');
var bodyParser = require("body-parser");
var app = express();
app.use(bodyParser.json({extended : true}));

app.get('/', function(request,response){

    response.json({message:'hit'});
});
app.listen(7000);

我尝试通过执行" node app.js"来测试代码。在终端。 但它不起作用。 我在这做什么错。 enter image description here

以下是我的package.json

   {
  "private": true,  
  "name": "rest api",
  "version": "1.0.0",
  "description": "Rest Api",
  "main": "app.js",
  "dependencies": {
    "body-parser": "^1.15.0",
    "express": "^4.13.4",
    "gulp": "^3.9.1",
    "gulp-nodemon": "^2.0.6"
  },
  "repository": {
     "type": "git",
     "url": ""
   },
  "devDependencies": {},
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "Markand Bhatt",
  "license": "ISC"
}

我尝试使用" npm install"安装所有依赖项。命令。 但我没有看到任何安装。以下是终端屏幕。

enter image description here

0 个答案:

没有答案