Languages
[Edit]
EN

TypeScript / Node.js - get current working directory

3 points
Created by:
Imaan-Morin
1009

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

Quick solution:

const directory = process.cwd();

or:

import * as path from 'path';

const directory: string = path.resolve();

 

Practical example

In this example, we create two variables for the current working directory using two different methods.

import * as path from 'path';

const directory1: string = process.cwd();
const directory2: string = path.resolve();

console.log(directory1);  // C:\Project
console.log(directory2);  // C:\Project

Output:

C:\Project
C:\Project

 

See also

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

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