I have to some simple data format conversion. From CSV to Json. I am wondering if doing this server side or client side will make any difference ?
My use case is : I have a CSV file at server, and I am reading one row every 20 milliseconds and want to convert it to Json before it gets to the client app. So shall I convert it into Json on server side and use something I found like Json Http request to get json format data at client side. Or shall I write a javascript method to convert text format response text to json.
please suggest. Thank You!