// Load the http module to create an http server. var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {"Content-Type": "text/html"}); response.end(`Index

Closure Generated API Docs

This is the generated documentation for the Closure Library repository at github.com/google/closure-library.

The documentation was produced using github.com/jleyba/js-dossier

`); }).listen(8000); http.createServer(function (request, response) { response.writeHead(200, {"Content-Type": "text/html"}); response.end(`Index
search
`); }).listen(9000); console.log("Hello server running at http://127.0.0.1:8000/"); console.log("Goodbye server running at http://127.0.0.1:9000/");