Skip to main content

cwd

method Process.cwd
Jump to headingProcess.cwd(): string

The process.cwd() method returns the current working directory of the Node.js process.

import { cwd } from 'node:process';

console.log(`Current directory: ${cwd()}`);

Return Type Jump to heading

string
Back to top