I'm a (self-taught) solo-developer trying to build my first full stack app. I can't really find much information about the topic, maybe I`m following the wrong path:
What I`ve achieved:
- I created a CRUD app, with one MySql "user" linked table;
- I created a login/registration system with dedicated "login" MySql table which once the user is logged in will redirect the user to the CRUD app page linked to the MySQL table and let the user perform all the CRUD operations;
What I want to achieve:
- Every user has their own user table;
At the moment once the users are registered and logged in they can access to a only one common CRUD user table. So any user can modify the common CRUD user table. But what I want is that each user has his private CRUD user table.
The stack of the app is:SCSS; Node.js;Express.js;Handlebars;MySql
I willing to learn any other tool to go ahead with the app. Thanks for any roadmap/suggestions!