Languages
[Edit]
EN

TypeScript / Node.js - get current script path

8 points
Created by:
Mariam-Barron
841

In this article, we would like to show you how to get the currently executed script path in Node.js.

Quick solution:

const path: string = __filename;

 

Practical example

const path: string = __filename;

console.log(path);  // C:\Project\index.js

Example output:

C:\Project\index.js

 

See also

  1. TypeScript / Node.js - get current script directory
  2. TypeScript / Node.js - get current working directory
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join