0

我正在尝试将 mysql 集群与节点 js 连接

我的程序

var nosql = require('mysql-js');

var dbProperties = {

    "implementation" : "ndb",

    "database" : "users"

};

nosql.openSession(dbProperties, null, onSession);

我收到此错误。

https://dev.mysql.com/doc/ndbapi/en/ndb-nodejs-setup.html

Error: Cannot find module 'mysql-js'

at Function.Module._resolveFilename (module.js:338:15) 

at Function.Module._load (module.js:280:25)


if i try to install with npm install mysql-js i am getting below error

npm http GET https://registry.npmjs.org/mysql-js

npm http 404 https://registry.npmjs.org/mysql-js

npm ERR! 404 'mysql-js' is not in the npm registry.

npm ERR! 404 You should bug the author to publish it

npm ERR! 404
npm ERR! 404 Maybe try 'npm search mysql'

npm ERR! 404
npm ERR! 404 Note that you can also install from a
npm ERR! 404 tarball, folder, or http url, or git url.
4

4 回答 4

0

您需要安装 mysql-js。为此,请转到命令提示符并转到您拥有项目的根目录。

npm install mysql-js

然后运行应用程序

node app.js //Assuming app.js is the your app file
于 2014-02-24T16:35:28.463 回答
0

您必须下载该模块,并且必须将其放在“node_modules”目录中。

于 2014-02-24T14:31:32.957 回答
0

您应该像这样安装该模块:

npm install mysql/mysql-js

npm对 Github 存储库很聪明)

请注意,它会询问一些与您的 MySQL 安装相关的问题。

于 2014-02-24T20:39:34.367 回答
0

您需要使用作为 MySQL Cluster 一部分的 node.js 驱动程序软件 - 您可以在这篇文章中看到一个有效的教程:
使用 JavaScript 和 Node.js 与 MySQL Cluster – 第一步

于 2014-02-25T08:22:54.030 回答