This repository has been archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
56 lines (56 loc) · 2.12 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
const http = require('http');
const url = require('url');
const fs = require('fs');
const path = require('path');
// vous pouvez passer le paramètre en ligne de commande. ex. node static_server.js 3000
const port = process.argv[2] || 9000;
http.createServer(function (req, res) {
console.log(`${req.method} ${req.url}`);
// découpe l'URL
const parsedUrl = url.parse(req.url);
// Extrait le chemin de l'URL
let pathname = `.${parsedUrl.pathname}`;
// Associe le type MIME par rapport au suffixe du fichier demandé
const mimeType = {
'.ico': 'image/x-icon',
'.html': 'text/html',
'.js': 'text/javascript',
'.json': 'application/json',
'.css': 'text/css',
'.png': 'image/png',
'.jpg': 'image/jpeg',
'.wav': 'audio/wav',
'.mp3': 'audio/mpeg',
'.svg': 'image/svg+xml',
'.pdf': 'application/pdf',
'.doc': 'application/msword',
'.eot': 'appliaction/vnd.ms-fontobject',
'.ttf': 'application/font-sfnt'
};
fs.exists(pathname, function (exist) {
if(!exist) {
// si le fichier n'existe pas, renvoie 404
res.statusCode = 404;
res.end(`File ${pathname} not found!`);
return;
}
// s'il s'agit d'un répertoire, on tente d'y trouver un fichier index.html
if (fs.statSync(pathname).isDirectory()) {
pathname += '/index.html';
}
// lecture du fichier local
fs.readFile(pathname, function(err, data){
if(err){
res.statusCode = 500;
res.end(`Error getting the file: ${err}.`);
} else {
// extraction du suffixe de fichier selon le chemin basé sur l'URL fournie. ex. .js, .doc, ...
const ext = path.parse(pathname).ext;
// si le fichier est trouvé, définit le content-type et envoie les données
res.setHeader('Content-type', mimeType[ext] || 'text/plain' );
res.end(data);
}
});
});
}).listen(parseInt(port));
console.log(`Le serveur écoute sur le port ${port}`);