Last active
November 19, 2024 11:03
-
-
Save marcelarie/dd302d5e4e62084ff37c4cc3a2f8bd7b to your computer and use it in GitHub Desktop.
Fastify typescript boilerplatte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Fastify from "fastify"; | |
const fastify = Fastify({ logger: true }); | |
fastify.get("/", async (_request, _reply) => { | |
return "Hello World"; | |
}); | |
const start = async () => { | |
try { | |
await fastify.listen({ port: 8080 }); | |
} catch (err) { | |
console.error(err); | |
process.exit(1); | |
} | |
}; | |
start(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "fraud-exam-monitor-api", | |
"version": "1.0.0", | |
"main": "index.js", | |
"scripts": { | |
"build": "tsc -p tsconfig.json", | |
"start": "node build/index.js", | |
"dev": "ts-node src/index.ts" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", | |
"description": "", | |
"dependencies": { | |
"fastify": "^5.1.0" | |
}, | |
"devDependencies": { | |
"@types/node": "^22.9.0", | |
"ts-node": "^10.9.2", | |
"typescript": "^5.6.3" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "es2017", | |
"module": "commonjs", | |
"esModuleInterop": true, | |
"forceConsistentCasingInFileNames": true, | |
"strict": true, | |
"skipLibCheck": true, | |
"rootDir": "./src", | |
"outDir": "./build" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment