Advertisement
Guest User

Untitled

a guest
May 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. 'use strict'
  2.  
  3. const express = require('express'),
  4. app = express();
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12. app.get('/', function(req, res) {
  13. res.sendFile(__dirname + '/public/accueil.html')
  14.  
  15. });
  16.  
  17. app.get('/about', function(req, res) {
  18. res.sendFile(__dirname + '/public/apropos.html')
  19. });
  20.  
  21.  
  22. app.listen(3000, function() {
  23. console.log('Tu tourne sur le port 3000!')
  24. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement