I'm building a pretty straightforward Node/Express web app that pulls in data from the Reddit API, does some manipulation on it, and then plan to visualizes said data through Charts.js client side. However, being relatively new to fullstack dev work, I'm wondering how to best approach the data manipulation aspect.
Currently, I have 100 comments being pulled at a time and am doing manipulation on those posts server side and then pushing that JSON to the client side for the data viz. Since there is no data persistence between searches and the data itself isn't confidential, is it more efficient to just send the original JSON for data manipulation to be done client side as well?