This commit is contained in:
bumpsoo 2025-06-16 15:58:45 +09:00
commit fcaaa2d1f5
7 changed files with 3473 additions and 0 deletions

24
.gitignore vendored Normal file
View file

@ -0,0 +1,24 @@
# Node.js 관련
node_modules/
dist/
.env
# TypeScript
*.tsbuildinfo
# VSCode 및 에디터 설정
.vscode/
.idea/
# macOS
.DS_Store
# 로그 파일
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# 환경별 설정
*.local

6
.prettierrc Normal file
View file

@ -0,0 +1,6 @@
{
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}

17
eslint.config.mjs Normal file
View file

@ -0,0 +1,17 @@
import js from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([
{
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
plugins: { js },
extends: ["js/recommended"],
},
{
files: ["**/*.{js,mjs,cjs,ts,mts,cts}"],
languageOptions: { globals: globals.browser },
},
tseslint.configs.recommended,
]);

3368
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

34
package.json Normal file
View file

@ -0,0 +1,34 @@
{
"name": "stz-node",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/express": "^5.0.3",
"@types/node": "^24.0.1",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"prettier": "^3.5.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
}
}

12
src/index.ts Normal file
View file

@ -0,0 +1,12 @@
import express from "express";
const app = express();
const PORT = process.env.PORT || 3000;
app.get("/", (_req, res) => {
res.send("Hello from Express + TypeScript!");
});
app.listen(PORT, () => {
console.log(`🚀 Server running at http://localhost:${PORT}`);
});

12
tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}