What is the problem this feature will solve?
The process title can only be set via proccess.title. Problems with it:
- Setter APIs like it are weird and legacy, it's a side-effect that may look like a code smell
- Doesn't work with destructuring, setter is not triggered:
import {title} from "node:process";
title = "title";
What is the feature you are proposing to solve the problem?
import {setTitle} from "node:process";
setTitle("title");
What alternatives have you considered?
None available
What is the problem this feature will solve?
The process title can only be set via
proccess.title. Problems with it:What is the feature you are proposing to solve the problem?
What alternatives have you considered?
None available