Code:
```
var http = require('http');
var port = process.env.port || 1337;
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send('Hello!');
});
app.listen(8888);
```
Inside the body of the lambda, there's no code completion for either req or res.
```
var http = require('http');
var port = process.env.port || 1337;
var express = require('express');
var app = express();
app.get('/', function(req, res) {
res.send('Hello!');
});
app.listen(8888);
```
Inside the body of the lambda, there's no code completion for either req or res.