Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8230443
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T17:08:18+00:00 2026-06-07T17:08:18+00:00

I am using node-mongodb-native driver. I tried collection.findOne({email: ‘a@mail.com’}, function(err, result) { if (!result)

  • 0

I am using node-mongodb-native driver. I tried

collection.findOne({email: 'a@mail.com'}, function(err, result) {
  if (!result) throw new Error('Record not found!');
});

But the error is caught by mongodb driver and the express server is terminated.

What’s the correct way for this case?

=== Edit===

I have the code below in app.js

app.configure('development', function() {
    app.use(express.errorHandler({dumpExceptions: true, showStack: true}));
});

app.configure('production', function() {
    app.use(express.errorHandler());
});

Related code in node_modules/mongodb/lib/mongodb/connection/server.js

connectionPool.on("message", function(message) {
    try {
        ......
    } catch (err) {
      // Throw error in next tick
      process.nextTick(function() {
        throw err; // <-- here throws an uncaught error
      })
    }      
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T17:08:19+00:00Added an answer on June 7, 2026 at 5:08 pm

    The correct use is not to throw an error, but to pass it to next function. First you define the error handler:

    app.error(function (err, req, res, next) {
        res.render('error_page.jade');
    })
    

    (What’s this talk about error being depracated? I don’t know anything about that. But even if then you can just use use. The mechanism is still the same.).

    Now in your route you pass the error to the handler like this:

    function handler(req, res, next) {
        collection.findOne({email: 'a@mail.com'}, function(err, result) {
            if (!result) {
                var myerr = new Error('Record not found!');
                return next(myerr); // <---- pass it, not throw it
            }
            res.render('results.jade', { results: result });
        });
    };
    

    Make sure that no other code (related to the response) is fired after next(myerr); (that’s why I used return there).

    Side note: Errors thrown in asynchronous operations are not handled well by Express (well, actually they somewhat are, but that’s not what you need). This may crash your app. The only way to capture them is by using

    process.on('uncaughtException', function(err) {
        // handle it here, log or something
    });
    

    but this is a global exception handler, i.e. you cannot use it to send the response to the user.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm inserting documents using node mongodb native driver into a mongodb (sic!). My objects
I just wrote my first nodejs program using the node-mongodb-native driver. I used the
I am currently playing around with node.js and MongoDB using the node-mongo-native driver. I
Im having some issues with deleting an entry from mongo DB. Im using node-mongodb-native
How do I update a mongodb collection from JS? db.collection('fruits', function (err, collection) {
I am new to Node, and I'm using Mongoose as a driver for MongoDB.
How much overhead does Mongoose add to the node-mongodb-native driver? If I just wanted
Is there any way to use dynamic keys with the node-mongodb-native driver? By this
I have just installed MongoDB in my machine (Windows 7) and installed node-mongodb-native using
I am writing some node.js code using the node-mongodb driver. I decided to cache

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.