-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
35 lines (28 loc) · 918 Bytes
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
const express = require('express');
const cors = require('cors');
const fs = require('fs');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.json());
app.use(cors());
app.use(express.static(path.join(__dirname, 'public')));
const dataDir = './data';
// Fonction pour charger les données depuis un fichier JSON spécifique
const loadStocks = (filename) => {
const filePath = path.join(dataDir, `${filename}.json`);
if (fs.existsSync(filePath)) {
const data = fs.readFileSync(filePath);
return JSON.parse(data);
}
return [];
};
// Route pour obtenir les stocks d'un tableau spécifique
app.get('/stocks/:tableName', (req, res) => {
const tableName = req.params.tableName;
const stocks = loadStocks(tableName);
res.json(stocks);
});
app.listen(port, () => {
console.log(`Serveur en écoute sur http://localhost:${port}`);
});