[node.script] `MAX_ENV` variable is undefined
I'm trying to use the MAX_ENV variable from the Node for Max API to flag whether I'm running in Max or in Max for Live as shown in https://docs.cycling74.com/max8/vignettes/07_n4m_maxapi?q=NODE_ENV.
When checking for equality against the MAX attribute of MAX_ENV I get the following error:TypeError: Cannot read property 'MAX' of undefined
Upon introspecting with a debugger attached, this variable is indeed undefined. Atm this is not critical because there's an easy fix: process.env.MAX_ENV is just set to a string "max" or "maxforlive" etc. depending on the environment. Still figured I should flag this for review.