いつの間にかexpress.jsも4です。 では早速 expressのインストール 4からnpmではexpressをインストールするんじゃなくてexpress-generatorをインストールするようになりました。 npm install -g express-generator coffee-script js2coffee プロジェクトの作成 適当な名前のプロジェクトを作成 オプションはお好みで express hoge -css stylus cd hoge ここでjsをcoffeeにする便利ツールjs2coffeeを使い一括で変換 find . -type f -name "*.js" | while read f; do js2coffee "$f" > "${f%.*}.coffee"; done 上手くできたらjsファイルは削除 find . -type f -name "*