Advertisement
MCreeper12731

Handlebars app

Mar 25th, 2025 (edited)
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import express from 'express';
  2. import { dirname, join } from "path";
  3. import { fileURLToPath } from "url";
  4.  
  5. const __dirname = dirname(fileURLToPath(import.meta.url));
  6.  
  7. const app = express();
  8.  
  9. app.set('view engine', 'hbs');
  10. app.set('views', join(__dirname, 'views'));
  11. app.use(express.static(join(__dirname, "public")));
  12.  
  13. // Definicija poti - app.get()
  14.  
  15.  
  16. app.listen(3000, () => {
  17.     console.log('Server is running at http://localhost:3000');
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement