mirror of
https://github.com/axios/axios.git
synced 2026-04-11 14:21:59 +08:00
* Fixes #10610 Deprecation Warning : url.parse() is deprecated in Node.js v22 (via follow-redirects) * Fixes #10610 Deprecation Warning : fixed again * Apply suggestion from @cubic-dev-ai[bot] Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --------- Co-authored-by: tona jose <tona00jose@gmail.com> Co-authored-by: Jay <jasonsaayman@gmail.com> Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
131 lines
3.0 KiB
JavaScript
131 lines
3.0 KiB
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
import http from 'http';
|
|
|
|
let server;
|
|
|
|
/**
|
|
* Pipes a file to the HTTP response.
|
|
*
|
|
* @param {http.ServerResponse} res - The HTTP response object.
|
|
* @param {string} file - The relative path to the file to be served.
|
|
* @param {string} [type] - Optional MIME type for the response.
|
|
*/
|
|
function pipeFileToResponse(res, file, type) {
|
|
if (type) {
|
|
res.writeHead(200, {
|
|
'Content-Type': type,
|
|
});
|
|
}
|
|
|
|
fs.createReadStream(path.join(path.resolve(), 'sandbox', file)).pipe(res);
|
|
}
|
|
|
|
/**
|
|
* Handles API requests to /api.
|
|
*
|
|
* Collects request data, parses it as JSON, and returns a JSON response
|
|
* containing the request URL, method, headers, and parsed data.
|
|
*
|
|
* @param {http.IncomingMessage} req - The HTTP request object.
|
|
* @param {http.ServerResponse} res - The HTTP response object.
|
|
*/
|
|
function handleApiRequest(req, res) {
|
|
let status;
|
|
let result;
|
|
let data = '';
|
|
|
|
req.on('data', (chunk) => {
|
|
data += chunk;
|
|
});
|
|
|
|
req.on('end', () => {
|
|
try {
|
|
status = 200;
|
|
result = {
|
|
url: req.url,
|
|
data: data ? JSON.parse(data) : undefined,
|
|
method: req.method,
|
|
headers: req.headers,
|
|
};
|
|
} catch (e) {
|
|
console.error('Error:', e.message);
|
|
status = 400;
|
|
result = {
|
|
error: e.message,
|
|
};
|
|
}
|
|
|
|
res.writeHead(status, {
|
|
'Content-Type': 'application/json',
|
|
});
|
|
res.end(JSON.stringify(result));
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Handles incoming HTTP requests.
|
|
*
|
|
* Serves static files like index.html and axios.js, or routes API requests to
|
|
* handleApiRequest. Responds with 404 for unrecognized paths.
|
|
*
|
|
* @param {http.IncomingMessage} req - The HTTP request object.
|
|
* @param {http.ServerResponse} res - The HTTP response object.
|
|
*/
|
|
function requestHandler(req, res) {
|
|
req.setEncoding('utf8');
|
|
|
|
const parsed = new URL(req.url, 'http://localhost');
|
|
const pathname = parsed.pathname;
|
|
|
|
console.log('[' + new Date() + ']', req.method, pathname);
|
|
|
|
if (pathname === '/') {
|
|
pathname = '/index.html';
|
|
}
|
|
|
|
switch (pathname) {
|
|
case '/index.html':
|
|
pipeFileToResponse(res, './client.html', 'text/html');
|
|
break;
|
|
|
|
case '/axios.js':
|
|
pipeFileToResponse(res, '../dist/axios.js', 'text/javascript');
|
|
break;
|
|
|
|
case '/axios.js.map':
|
|
pipeFileToResponse(res, '../dist/axios.js.map', 'text/javascript');
|
|
break;
|
|
|
|
case '/api':
|
|
handleApiRequest(req, res);
|
|
break;
|
|
|
|
default:
|
|
res.writeHead(404);
|
|
res.end('<h1>404 Not Found</h1>');
|
|
break;
|
|
}
|
|
}
|
|
|
|
const PORT = 3000;
|
|
|
|
// Create and start the HTTP server
|
|
server = http.createServer(requestHandler);
|
|
|
|
server.listen(PORT, () => {
|
|
console.log(`Listening on localhost:${PORT}...`);
|
|
});
|
|
|
|
/**
|
|
* Handles server errors, e.g., port already in use.
|
|
*
|
|
* @param {NodeJS.ErrnoException} error - The server error object.
|
|
*/
|
|
server.on('error', (error) => {
|
|
if (error.code === 'EADDRINUSE') {
|
|
console.log(`Address localhost:${PORT} in use. Please retry when the port is available!`);
|
|
server.close();
|
|
}
|
|
});
|