Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Build a REST API With Express Modeling Data for the API Default Values in Mongoose

When I'm trying to run my Mongo database I keep getting the same error, I'm not too sure what it means, can anybody help

When I'm trying to run my Mongo database I keep getting the same error, I'm not too sure what it means, can anybody help:

The error is:

if(databaseName.indexOf(invalidChars[i]) != -1) throw MongoError.create({message: "database names cannot contain the char acter '" + invalidChars[i] + "'", driver:true});

1 Answer

Ken Alger
STAFF
Ken Alger
Treehouse Teacher

I'll need more information to diagnose this. What invalid character is it stating you have in the DB name? Is the error coming from that line of code or is that line of code giving you the error statement? What is the DB name you're trying to use? What's the collection name you're trying to use?

Ken