nodejs-book icon indicating copy to clipboard operation
nodejs-book copied to clipboard

esm에서 __filename, __dirname 쓰는 법

Open ZeroCho opened this issue 1 year ago • 0 comments

import path from "path"; import { fileURLToPath } from "url"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename);

ZeroCho avatar Sep 13 '23 05:09 ZeroCho