Error trying to connect to a Mongo DB

Hello, I’m taking the Jumpstart Node.js course while trying to connect to MongoDB I receive the following error:


Microsoft Windows [Version 6.2.8250]
(c) 2012 Microsoft Corporation. All rights reserved.

C:\\Users\\Paul>cd../../authentication

C:\\authentication>node app

C:\\authentication\
ode_modules\\mongoose\
ode_modules\\mongodb\\lib\\mongodb\\db.js:2
41
    if(databaseName.indexOf(invalidChars[i]) != -1) throw new Error("database
                                                          ^
Error: database names cannot contain the character '.'
    at validateDatabaseName (C:\\authentication\
ode_modules\\mongoose\
ode_module
s\\mongodb\\lib\\mongodb\\db.js:241:59)
    at new Db (C:\\authentication\
ode_modules\\mongoose\
ode_modules\\mongodb\\lib\\
mongodb\\db.js:79:3)
    at NativeConnection.doOpen (C:\\authentication\
ode_modules\\mongoose\\lib\\driv
ers\
ode-mongodb-native\\connection.js:42:15)
    at NativeConnection.Connection._open (C:\\authentication\
ode_modules\\mongoos
e\\lib\\connection.js:375:15)
    at NativeConnection.Connection.open (C:\\authentication\
ode_modules\\mongoose
\\lib\\connection.js:234:8)
    at Mongoose.connect (C:\\authentication\
ode_modules\\mongoose\\lib\\index.js:15
0:15)
    at connect (C:\\authentication\\lib\\db.js:16:12)
    at Object.<anonymous> (C:\\authentication\\lib\\db.js:11:1)
    at Module._compile (module.js:449:26)
    at Object.Module._extensions..js (module.js:467:10)

C:\\authentication>

The offending script seems to be lib/db.js. I’m new to node.js so any help would be appreciated. Thanks.

–Ogian

Off Topic:

Can’t help you just yet because I’m still waiting for my copy of the book and I’m not really familiar with it but I’m sure that some other sitepointer will be able to assist you. I hope that you didn’t mind that I added code tags to your post. I think it makes the post easier to read

I’ve never used Node.js, so this is just a guess, but is it possible that the problem occurs because there is a space at the beginning of the address-variable?

Ok, thanks. Not a problem.

@Denk, removing the space is the answer. Thank you. I checked to source code for the book and that has the same typo. Thanks again.

Nice! Glad I could help :slight_smile:

Might be an idea to e-mail the author of the book and report the typo.

I will. Thanks.

Now I feel ashamed of myself because I didn’t even take the time to look at your code, believing that if I couldn’t see it in context of the book I would not be able to help… :headbang:

Glad that it is sorte out and you found an errata :smiley:

I’m currently going through the book and didn’t even pick up on this one - adding it to my list of errata :wink:

Maybe it’s because I type out all the code samples rather than copying pasting, or maybe my brain just automatically ignored the space. (Or also very likely, didn’t really notice it.)

@everyone Thanks for your quick responses.