Skip to content

Instantly share code, notes, and snippets.

@marcelarie
Last active November 19, 2024 11:03
Show Gist options
  • Save marcelarie/dd302d5e4e62084ff37c4cc3a2f8bd7b to your computer and use it in GitHub Desktop.
Save marcelarie/dd302d5e4e62084ff37c4cc3a2f8bd7b to your computer and use it in GitHub Desktop.
Fastify typescript boilerplatte
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();
{
"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"
}
}
{
"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