I have this module in a file called timer.js
module.exports = {
iniciar(){
console.log('oi');
}
}
I'm trying to import this module into the index.js file as follows:
const timer = require('./timer');
Only this error is returning me:
Uncaught Error: Cannot find module './timer'
Can anyone help me?