You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 21, 2022. It is now read-only.
When trying to execute an node 'express' application I have the following issue:
var app = exports = module.exports = {};
^
ReferenceError: exports is not defined
at /Users/mathk/git/expresstest/node_modules/express/lib/application.js:37:19
at Object.exports.runInContext (vm.js:44:17)
at sbRequire (/Applications/LightTable.app/Contents/Resources/app/plugins/Javascript/node/ltnodeclient.js:99:10)
var express = require('express');
var app = express();
app.get('/', function (req, res) {
res.send('Hello World!');
});
app.listen(3000, function () {
console.log('Example app listening on port 3000!');
});
Then add a new connection in LT using the app.js.
Environment:
LT: 0.8.1
OS: OSX 10.11.3
Node: 5.6.0 ( Tested with 4.3.1 and 0.12.7 as well)