我正在嘗試執行這個ecc
庫的NodeJS, https://github.com/jpillora/eccjs。執行eccjs庫時出錯
,我嘗試運行的文件,
https://github.com/jpillora/eccjs/blob/gh-pages/examples/simple.js
的問題是,當我嘗試使用node simple.js
命令,我收到以下錯誤運行該文件,
eccjs-gh-pages/examples/simple.js:31
var keys = ecc.generate(ecc.ENC_DEC);
^
TypeError: Object function ecc() {
return new ECC();
} has no method 'generate'
at Object.<anonymous> (/home/pi/Project/eccjs-gh-pages/examples/simple.js:31:16)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
然而,當我使用html文件(https://github.com/jpillora/eccjs/blob/gh-pages/index.html)如下運行相同的文件時,
<script src="examples/simple.js"></script>
我可以看到我的Chrome控制檯中的輸出。
有人能告訴我爲什麼文件不能使用命令行,但通過瀏覽器執行時工作正常嗎?無論如何要這樣做?
編輯: 我已經註釋掉以下行,
var ecc = require('../dist/0.1/ecc');
在example.js
在命令行中運行它之前。