S SmartDocs
系列: Ricky typescript 12 行 · 更新於 2026-02-03

index.ts

Ricky/backend/src/index.ts

import dotenv from 'dotenv';
dotenv.config();

import app from './server/app.js';

const port = Number(process.env.PORT || 4000);

app.listen(port, () => {
	console.log(`API listening on http://localhost:${port}`);
});


相關文章