import { BackendPanel } from "./BackendPanel"; // One of the NWB files in DANDI dandiset 000986 (mouse auditory cortex). // This is the same asset shown at: // https://neurosift.app/nwb?url=https%3A%2F%2Fapi.dandiarchive.org%2Fapi%2Fassets%2Faacd1c8a-73f7-469e-bf08-0afd5c1052f9%2Fdownload%2F&dandisetId=000986 const DOWNLOAD_URL = "https://api.dandiarchive.org/api/assets/aacd1c8a-73f7-469e-bf08-0afd5c1052f9/download/"; const DANDISET_ID = "000986"; export const Demo = () => { return (

Live demo

Both panels below read the same remote NWB file lazily, entirely in your browser — nothing is downloaded in full and there is no server. The left panel reads the raw HDF5 over HTTP range requests (h5wasm); the right panel reads through a precomputed LINDI JSON index. Open your browser's network tab to watch the partial range requests.

dandiset {DANDISET_ID} · {DOWNLOAD_URL}
open this file in neurosift ↗
); };