I have a s3 csv file in aws-s3 bucket. I want to read only ranges of lines from the file instead of whole file as it is.
My goal here is, to get the content of the file in paginated way in the UI application as a tabulated form.
I read that Range
option is present in s3.getObject from this link.
But I do not need byte ranges but I need line ranges. Ex: (1-100, similar to pagination)
Is there a way that we can do this using NodeJS?