RenaiApp/src/index.ts

20 lines
428 B
TypeScript

import * as dotenv from 'dotenv';
import * as http from 'http';
dotenv.config({});
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World\n');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
const x = 1;
const y = x + 1;
});