Repro code: ``` js var vm = require('vm'); var foo = vm.runInNewContext('foo = "bar"'); console.log(foo); ``` In Node: ``` $ node t bar ``` In the browser, via Browserify: ``` TypeError: Cannot set property 'foo' of undefined ``` 