Lines Matching refs:http
26 const http = require('http');
45 const server = http.createServer();
52 assert.ok(s instanceof http.Server);
53 http.get({
60 const server = http.createServer(common.mustCall((req, res) => {
67 assert.ok(s instanceof http.IncomingMessage);
70 const req = http.request({
81 const server = http.createServer(common.mustCall((req, res) => {
88 assert.ok(s instanceof http.OutgoingMessage);
91 http.get({
98 const server = http.createServer(common.mustCall((req, res) => {
101 assert.ok(s instanceof http.IncomingMessage);
110 http.get({
122 const server = http.createServer((req, res) => {
132 assert.ok(s instanceof http.OutgoingMessage);
156 const server = http.createServer();
162 assert.ok(s instanceof http.Server);
193 const server = http.createServer(common.mustCall((req, res) => {
204 assert.ok(s instanceof http.Server);