我正在尝试将此tutorial用于CoffeScript。
我打开终端,导航到simpleMath.coffee
所在的目录并运行node
并尝试var SimpleMath = require('./simpleMath');
,这会导致以下错误:
Error: Cannot find module 'simpleMath'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at repl:1:18
at REPLServer.self.eval (repl.js:110:21)
at repl.js:249:20
at REPLServer.self.eval (repl.js:122:7)
at Interface.<anonymous> (repl.js:239:12)
at Interface.EventEmitter.emit (events.js:95:17)
我也试过simpleMath
,没有./
。