Skip to content

Instantly share code, notes, and snippets.

@issleyva
issleyva / index.js
Last active September 2, 2024 23:36
Pug views in nodejs and expressjs using modules
import express from 'express'
import path from 'path';
import { fileURLToPath } from 'url';
// Import DB and routes
// Setting __dirname for modules
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)