1 Star 0 Fork 2

glhyy/ascend_finetune

forked from on the way/ascend_finetune 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
server.js 609 Bytes
一键复制 编辑 原始数据 按行查看 历史
on the way 提交于 2024-12-23 15:38 . 昇腾微调镜像
const http = require('http');
const fs = require('fs');
const path = require('path');
const port = 3100;
const directory = __dirname;
const server = http.createServer((req, res) => {
const filePath = path.join(directory, req.url);
fs.stat(filePath, (err, stats) => {
if (err || !stats.isFile()) {
res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('Not Found\n');
return;
}
fs.createReadStream(filePath).pipe(res);
});
});
server.listen(port, () => {
console.log(`Server is running at http://localhost:${port}`);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/glhyy/ascend_finetune.git
git@gitee.com:glhyy/ascend_finetune.git
glhyy
ascend_finetune
ascend_finetune
master

搜索帮助