If you are using a mac/linux and you want to retrieve local parameters to the machine you're using, this is what you'll do:
- In terminal run nano ~/.bash_profile
- add a line like: export MY_VAR=var
- save & run source ~/.bash_profile
- in node use like: console.log(process.env.MY_VAR);