17
10

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.

【Express】__dirnameと__filenameの使い方

Posted at

プログラミング勉強日記

2021年2月14日
昨日の記事__dirnameを扱っているが、いまいち理解できていなかったのでまとめる。

__dirnameとは

 現在のディレクトリのパスを示す特別な変数。

// C:/sample/sample.js
console.log(__dirname);
//  C:/sample と表示される

__filenameとは

 現在のモジュールの絶対パスを取得する。

// C:/sample/sample.js
console.log(__filename);
// C:/sample/sample.js と表示される

参考文献

面倒なJavaScriptコードのとりまとめがこれ1つで可能に、「webpack」入門

17
10
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
17
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?