Out of the box, DevTools shows the internal data structure of a collection — not its contents. A custom formatter fixes that, so a List reads like a list, right in the Console.


Supported in Chrome (v47+) and Firefox (116+) via custom DevTools formatters.
Add it to your browser and it just works — no configuration.
Add the devtools as a dev dependency in your project instead.
npm install --save-dev @immutable/devtools
import * as Immutable from 'immutable';
import installDevTools from '@immutable/devtools';
installDevTools(Immutable);See more details in the GitHub repository.