Can a .mjpg video from an IP camera be streamed to a React frontend via Express?

Is it possible to stream a .mjpg video from an IP camera accessed via an HTTP link to a React frontend through Express? Previously, I successfully streamed regular videos from the server using Express with the code request(location).pipe(res).
While I’ve managed to stream with ffmpeg and PHP when utilizing an RTSP link instead of an HTTP link, my current goal is to stream directly from the camera to the React frontend via Express.