```typescript
import { type Process } from "node:node__process.d.ts";
```
Process.cwd(): string
The `process.cwd()` method returns the current working directory of the Node.js
process.
```js
import { cwd } from 'node:process';
console.log(`Current directory: ${cwd()}`);
```