
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
immutable-validator
Advanced tools
Simple tool to deep validate that your immutable-js object is fully immutable
Deep validates an Object/Array/Map/List
Simple tool to validate that your immutable-js object is fully immutable. Deep validates and logs paths if there are any leafs that are not an instance from immutable-js. Primitive values are ignored.
npm install immutable-validator --save
import { Map, List } from 'immutable'
import ImmutableValidator from 'immutable-validator'
const obj = Map({
a: 1,
b: 2,
c: {},
d: [],
e: List([
1,
2,
Map({
aa: 1,
bb: {}
})
])
})
ImmutableValidator(obj /**, options **/)
/** LOGS:
* root.c
* root.d
* root.e.2.bb
* /
Usage with Redux
import { createStore } from 'redux'
import rootReducer from '../rootReducer'
import ImmutableValidator from 'immutable-validator'
const Store = createStore(rootReducer)
Store.subscribe(() => ImmutableValidator(Store.getState()))
Object passed as second argument
| Command | default | Description |
|---|---|---|
| logToConsole | true | Log result to console |
| collapsed | true | Collapse the result in console |
FAQs
Simple tool to deep validate that your immutable-js object is fully immutable
We found that immutable-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.