私は簡単な例に取り組んでいます。Javascriptで動作させることはできますが、CoffeeScriptのバージョンに問題があります。
これがperson.coffeeです:
module.exports = Person
class Person
constructor: (@name) ->
talk: ->
console.log "My name is #{@name}"
そしてここにindex.coffeeがあります:
Person = require "./person"
emma = new Person "Emma"
emma.talk()
index.coffeeを実行して、コンソール出力「MynameisEmma」を確認する予定です。代わりに、TypeError:undefined in notafunctionというエラーが発生します。