Friday 20 July 2018

how should I store a users list of files and folders?

I'm coming from LAMP.. very new to node... can someone just give me a little guidance please? I'm using node, express, and mongodb... I'm trying to create a cloud storage service as a learning lession.. how show I... design/store my data? should I just have a users collection that looks something like this? or is there a better/faster way to do it?{ id: 23452345, email: bob@bob.lcom, password: password, files: { { name: music, folder: root, file: false }, { name: file1.mp3, folder: music, file: true, type: audio }, { name: file2.mp3, folder: root, file: true, type: audio } } } thanks....

Submitted July 20, 2018 at 09:35PM by superfake123

No comments:

Post a Comment