Chrome DevTools custom formatter for Immutable.js collections (List, Map, Set, Stack, Record). Version 0.1.5, no recent releases since 2016. Transforms opaque internal structures into readable listings in the Console and Scope panel. Must be explicitly installed in browser environments; works only with Chrome v47+ and requires enabling custom formatters in DevTools settings. Intended for development-only use. Provides a Chrome extension alternative. Covers common immutable types but not Seq, Range, or Repeat.
npm install immutable-devtoolsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Installs DevTools formatter for Immutable.js collections, showing how to conditionally require only in development and how to enable formatters in Chrome.
Open DevTools, press F1, scroll to Console section, check 'Enable custom formatters'.
Wrap require/import in environment check: if (process.env.NODE_ENV !== 'production') { ... } or use webpack DefinePlugin.Consider using Chrome extension 'Immutable.js Object Formatter' by mattzeunert for automatic updates.
Use default require: 'const installDevTools = require(...)'
Use default import: 'import installDevTools from ...'
Replace with 'const installDevTools = require('immutable-devtools')'Replace with 'import installDevTools from 'immutable-devtools''
Ensure you pass the Immutable object: installDevTools(Immutable)