Server express

This commit is contained in:
2026-04-27 12:37:01 +02:00
parent d71cd1a3d2
commit fd3f437f5c
4 changed files with 1669 additions and 0 deletions

1586
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "sf-monitorizacion-health",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "tsx src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.savefamilygps.net:SaveFamily/sf-monitorizacion-health.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@types/express": "^5.0.6",
"axios": "^1.15.2",
"express": "^5.2.1",
"tsx": "^4.21.0"
}
}

15
src/index.ts Normal file
View File

@@ -0,0 +1,15 @@
import express, { Request, Response, NextFunction } from "express";
const app = express();
const port = 3000;
app.use(express.json());
app.get("/", (req: Request, res: Response) => {
res.send({ message: "Hello World" });
});
app.use((err: Error, req: Request, res: Response, next: NextFunction) => {
res.status(500).send("Algo salió mal");
});
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});

39
tsconfig.json Normal file
View File

@@ -0,0 +1,39 @@
{
// Visit https://aka.ms/tsconfig to read more about this file
"compilerOptions": {
// File Layout
// "rootDir": "./src",
// "outDir": "./dist",
// Environment Settings
// See also https://aka.ms/tsconfig/module
"module": "nodenext",
"target": "esnext",
"types": [],
// For nodejs:
// "lib": ["esnext"],
// "types": ["node"],
// and npm install -D @types/node
// Other Outputs
"sourceMap": true,
"declaration": true,
"declarationMap": true,
// Stricter Typechecking Options
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
// Style Options
// "noImplicitReturns": true,
// "noImplicitOverride": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true,
// "noPropertyAccessFromIndexSignature": true,
// Recommended Options
"strict": true,
"jsx": "react-jsx",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noUncheckedSideEffectImports": true,
"moduleDetection": "force",
"skipLibCheck": true,
}
}