Okay so i was following a mern stack tutorial and the tutor wrote out some lines of code but didnt really explain them well. this is the code:
const path = require('path')
const {fileURLToPath} = require('url')
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
app.use("/assets", express.static(path.join(__dirname, "public/assets")));
Now Im not stupid or a bad programmer. even though i dont really have an explanation for what the code is doing, i have a pretty good idea. the problem is that when i run my database, i get this error:
SyntaxError: Identifier '__filename' has already been declared
which is crazy because i havent used '__filename' anywhere else in the code. when i try to change '__filename' to 'filename' then i get this error:
SyntaxError: Cannot use 'import.meta' outside a module
Im so confused. Please can someone just tell me what the code does and why i am getting these errors and also how to fix the errors.
check your package.json() if it is having a
if it has then remove it