ReferenceError: el servidor HTTP no está definido

var http = require('http'); //the variable doesn't necessarily have to be named http
http.createServer(function(req, res) {});
Clever Cardinal