1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Node.js: コマンドラインオプション--preserve-symlinksの挙動

Last updated at Posted at 2021-09-03

  • --preserve-symlinksなし(デフォルト)の場合
    • シムリンクファイルからrequire(相対パス)すると、実体ファイルからの相対パスになる
  • --preserve-symlinksありの場合
    • シムリンクファイルからrequire(相対パス)すると、シムリンクからの相対パスになる

公式ドキュメントに書いてある通り、たいていの場合は「なし」(デフォルト)のままでうまくいくと思う。

例1

.
├── a.js    // require("./b")
├── b.js -> sub/b.js
└── sub
    ├── b.js    // require("./c")
    └── c.js

--preserve-symlinksなし(デフォルト)の場合

$ node a.js
=> OK

--preserve-symlinksありの場合
./c.jsを読みに行こうとしてエラー。

$ node --preserve-symlinks a.js
internal/modules/cjs/loader.js:892
  throw err;
  ^

Error: Cannot find module './c'

例2

(ファイルの内容は例1と同じ)

.
├── a.js    // require("./b")
├── b.js -> sub/b.js
├── c.js -> sub2/c.js
├── sub
│   └── b.js    // require("./c")
└── sub2
    └── c.js

--preserve-symlinksなし(デフォルト)の場合
./sub/c.jsを読みに行こうとしてエラー。

$ node a.js
internal/modules/cjs/loader.js:892
  throw err;
  ^

Error: Cannot find module './c'

--preserve-symlinksありの場合

$ node --preserve-symlinks a.js
=> OK
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?