Currently, I am facing an issue with a lengthy JSON file that I am fetching from a URL using https.request. Upon attempting to parse the string with JSON.parse, I encounter an "Unexpected end of JSON input" error. It appears that there is a limit to the number of characters that JSON.parse can handle, causing it to truncate the data approximately halfway through my JSON file. Is there a way to parse only a portion of the string or obtain half of the JSON content from the URL in Javascript?