0👍
- I would say try to use your existing skills to achieve your goals. When you run into problems you cannot solve or problems that could be solved by a specific framework such as react, try using them. It’s better to understand what these frameworks are doing before you rely on them for every development.
- You need to use an http framework like express to return your api values from node js to a web client.
- Needs more info but as you’re already talking about component based libraries, a good approach would be to keep the cards in a json array and render your page from that. If you are persisting the card data in a database you will also may want to render them server side as the page is loaded using a server side technology like node.
- To keep things simple, you can store the info client side using something like localStorage or indexeddb. If you want to store something on the server side, you will need to introduce a way of identifying the user.
Source:stackexchange.com