Taner Tunçer
Taner Tunçer

Reputation: 107

Express is not handling errors for function

I'm using a function for multiple times by calling from different routes. It's running but express/node.js not handling errors in the function.

Here's the example.

# routes.js
var app = express()
var { test } = require('../functions/test.js')(app)

router.get('/test', (req, res) => {
  console.log(test())
})
# test.js
function test() {
  return 'Hey'
}

module.exports = function(app){
  return { test }
}

If I call a function in test() which is not exists, It's not throwing errors and returns nothing inside console.log(test())

# test.js
function test() {
  heyHeyheyHey()
  return 'Hey'
}

module.exports = function(app){
  return { test }
}

Do I have to define this module in somewhere or something?

Upvotes: 1

Views: 96

Answers (1)

emre-ozgun
emre-ozgun

Reputation: 762

I ran a quick demo and the error has been thrown. I'm sure you've figured it out but here is my snippet. enter image description here

enter image description here

Upvotes: 1

Related Questions