So I'm trying to parse a config.json file from the REPL. The file is: app/config/config.json and I'm running the REPL from app/.
In the REPL if I try to require the file, the REPL doesn't execute, instead waiting for more input:
$ node
> var config = require('./config/config.json');
...
I'm sure it can be done, but I'm not sure what I'm doing wrong: https://stackoverflow.com/a/9804910/1027966