0

スノーヒョウのマックブックにtower.jsをインストールするのに苦労しています。コマンドとエラーは次のとおりです。

My-Macbook:tower john$ tower new app

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^
TypeError: Object #<Object> has no method 'existsSync'
    at Object.<anonymous> (/usr/local/lib/node_modules/tower/index.js:6:21)
    at Module._compile (module.js:441:26)
    at Object..js (module.js:459:10)
    at Module.load (module.js:348:31)
    at Function._load (module.js:308:12)
    at Module.require (module.js:354:17)
    at require (module.js:370:17)
    at Object.<anonymous> (/usr/local/lib/node_modules/tower/bin/tower:15:3)
    at Module._compile (module.js:441:26)
    at Object..js (module.js:459:10)
4

1 に答える 1

1

Node.js 0.8 から、path.existsSync()現在はfs.existsSync()- 使用している Tower.js のバージョンは、インストールされている Node.js のバージョンと互換性がないようです。

于 2012-10-21T10:31:09.913 に答える