使用节点运行js文件

时间:2016-02-24 07:37:04

标签: javascript

目前,您只需使用putty登录ssh。

我们正在尝试运行一个js文件,然后基本上创建一个空的日志文件,目前我们只是得到了这个错误:

  

port:'1157',^^^^ SyntaxError:在Object.Module._extensions的Module._compile(module.js:443:25)处的exports.runInThisContext(vm.js:73:16)处的意外标识符。 .js(module.js:478:10)在Module.load(module.js:355:32)的Function.Module._load(module.js:310:12)位于Function.Module.runMain(module.js: 501:10)启动时(node.js:129:16)node.js:814:3

以下是我们认为是问题的代码:

{{1}}

我们不确定如何格式化

另一个问题是我们遇到了多个连接问题,但我认为这是主要问题。

为安全起见而编辑的详细信息,但格式与我们的实际文件相同

1 个答案:

答案 0 :(得分:0)

我注意到的事情很少,

  • 首先安装mysql节点模块
  • 然后在你js
  • 中要求它

您编写的代码用于导出模块。根据你的问题,似乎你想连接到mysql db。

请使用下面给出的代码并使用 node connect.js 命令运行它,它将适合您。

var mysql = require("mysql");

var con = mysql.createConnection({
    host : https//www.random.com, 
    port : '2332',      
    user : 'test@localhost', 
    password : '32323232', 
    database : 'test_installation', 
    charset : 'utf8_general_ci'
});

con.connect(function(err){
  if(err){
    console.log('Error connecting to Db');
    return;
  }
  console.log('Connection established');
});

由于 阿米特