控制台错误NodeJS配置

时间:2018-05-10 18:59:02

标签: javascript json node.js websocket async.js

我将为Android应用程序进行实时聊天,我正在考虑使用NodeJS和websockets,但我之前没有使用过这项技术,而且我有一些麻烦从它开始

我已经从控制台安装了nodejs(我使用的是Archlinux)

当我启动index.js时,控制台(在sublime文本中)抛出此错误日志:

[Errno 2] No such file or directory: 'jsc'
[cmd: ['jsc', '/srv/http/NodeJsApplication/index.js']]
[dir: /srv/http/NodeJsApplication]
[path: /bin:/usr/bin:/usr/local/bin:/usr/local/sbin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl]
[Finished]

package.json文件如下所示:

 {
  "name": "nodejsapplication",
  "version": "1.0.0",
  "description": "NodeJS chat for Android application",
  "main": "index.js",
  "scripts": {
    "start": "index.js",
    "test": "make test"
  },
  "keywords": [
    "nodejs",
    "npm",
    "chat_application"
  ],
  "author": "JProg",
  "license": "ISC",
  "dependencies": {
    "express": "^4.16.3",
    "socket.io": "^2.1.0"
  }
}

我已经安装了express和NodeJS

我没有使用过这项技术。

这是index.js的代码

    const http = require('http');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res)=>{
    res.statusCode=200;
    res.setHeader('Content-Type', 'text/plain');
    res.end('Hola mundo\n');
});

server.listen(port, hostname, ()=>
    console.log('Server running at http://${hostname}:${port}');
    );

2 个答案:

答案 0 :(得分:2)

问题可能在于您安装节点。 检查您是否可以node --version

同样在scripts =>下的package.json中"start": "node index.js"。 您是否正在使用任何IDE从中运行应用程序,如果是,请检查它是否可以找到节点的路径。

答案 1 :(得分:0)

我所做的是重新安装NodeJS并再次创建项目。 我的代码中也有一些错误,以下是我所做的更改:

    "scripts": {
    "test": "make test", 
    "start": "node index.js"
  }

和index.js

var port = 8080;
var hostname = 'localhost';
var express = require('express');
var app = express();
var server = require('http').Server(app);
var io = require('socket.io')(server);

server.listen(port, hostname, 500, function(){
    console.log('Executing server on http://localhost:8080');
});

现在正在开玩笑