MVC パターンに従っているため、いくつかのディレクトリに node.js モジュールがあります。現在のディレクトリの外にあるいくつかのモジュールにrequireを呼び出す必要があります。どうやってやるの?
/app/controller/c1.js
...
/app/model/m1.js
...
/app/view/v1.js
...
/app/view/v2.js
// this works
require('./v2');
// these doesn't work
require('../model/m1.js');
require('~/model/m1.js');
...
どうしてこんなことに?