init
This commit is contained in:
11
src/dev.ts
Normal file
11
src/dev.ts
Normal 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');
|
||||
});
|
||||
Reference in New Issue
Block a user