On this page

    M

    process.cwd

    History
    process.cwd(): string
    Returns: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()}`);
    const { cwd } = require('node:process');
    
    console.log(`Current directory: ${cwd()}`);