-
- Downloads
Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 145 additions, 0 deletions.gitignore
- LICENSE 21 additions, 0 deletionsLICENSE
- README 39 additions, 0 deletionsREADME
- package-lock.json 0 additions, 0 deletionspackage-lock.json
- package.json 20 additions, 0 deletionspackage.json
- src/index.ts 13 additions, 0 deletionssrc/index.ts
- tsconfig.json 109 additions, 0 deletionstsconfig.json
.gitignore
0 → 100644
LICENSE
0 → 100644
README
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
{ | ||
"devDependencies": { | ||
"@types/express": "^4.17.21", | ||
"@types/node": "^20.11.5", | ||
"typescript": "^5.3.3" | ||
}, | ||
"name": "helloworld-ts", | ||
"version": "1.0.0", | ||
"description": "A simple HTTP server in TypeScript", | ||
"main": "dist/index.js", | ||
"dependencies": { | ||
"express": "^4.18.2" | ||
}, | ||
"scripts": { | ||
"build": "tsc", | ||
"start": "node dist/index.js" | ||
}, | ||
"author": "Hugo Haldi, Malik Algelly", | ||
"license": "ISC" | ||
} |
src/index.ts
0 → 100644
tsconfig.json
0 → 100644
Please register or sign in to comment