export
Set an environment variable for the current session and child processes
export makes a variable available to child processes. Without export, variables are local to the shell only. Add to ~/.bashrc to persist across logins.
Example
$ export NODE_ENV=production
$ export PORT=8080
Tip: Type it yourself in the terminal below - reading is not the same as doing.