This commit is contained in:
2025-08-13 22:53:50 +08:00
commit ec5e7a7ae4
11 changed files with 340 additions and 0 deletions

11
src/dev.ts Normal file
View File

@@ -0,0 +1,11 @@
console.log('ssdf dff')
import { createServer } from 'http';
createServer((req, res) => {
console.log('Server is running');
const id = 'demo';
}).listen(3000, () => {
console.log('Server is listening on port 3000');
});