Mean.io - Best practice to extend User model
问题 Mean.io comes with a built in user model within the user package. What is the best practice for extending that user model if I want to attach additional data to it? My experience with Django had me creating a "profile" that had a foreign key pointing towards the user object it belonged to. I like this approach because I don't touch the user package that way. But is this a best practice? If this is, how can I ensure the creation of a profile doc at the creation of a user doc? If not, what is?