Languages
[Edit]
EN

TypeScript / Node.js - get current script directory

4 points
Created by:
maciek211
425

In this article, we would like to show you how to get the current script directory in Node.js.

As current script directory we understand the directory where executed script is located.

Quick solution:

const directory: string = __dirname;

Where: directory variable contains path to the directory.

 

Practical example

const directory: string = __dirname;

console.log(directory);  // C:\Project

Example output:

C:\Project

 

See also

  1. TypeScript / Node.js - get current script path

  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