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 User Authentication With Express and Mongo User Registration Defining a Mongo Schema with Mongoose

Imran Malik
Imran Malik
108 Points

Server or client side for schema

When we define schema for Database, does it has to on the server side or the client side?

1 Answer

andren
andren
28,558 Points

The schema and pretty much everything else related to the creation and management of the database is done on the server, not client.

If the schema was defined on the client then it could easily be modified by anybody who visited your site. Any code that needs to be somewhat tamper proof has to be stored on the server.