Here is my first file:
var self = this; var config = { \'confvar\': \'configval\' };
I want this configuration variable in another file,
module.exports = { ClientIDUnsplash : 'SuperSecretKey' };
var { ClientIDUnsplash } = require('./FileOne');
This example works best for React.