Now, I have implemented an Action as a plugin to get the exif information present in the image URL as an argument.
So my question is, which is more suitable for implementation, Client side or Server side?
I am not sure when to use them differently.
The advantages of ServerSide are
- You can use libraries with node modules.
The advantages of the ClientSide are
- console.log can be used
Is there any other reason why I need to use them differently?