Can I set the initialization value of node properties through environment variables?

Thanks a lot!
I tried all the ways but I can't

RED.nodes.registerType("my-node", {
    color: "rgb(231, 231, 174)",
    category: "test",
    defaults: {
      name: { value: `${global_name}` }
    },