0.2.0 • Published 1 year ago

react-deep-memo v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

React Deep Memo

Do you need use some sort of messy object value as a hook dependant? Are you sick of useEffect being called from an unchanged Object. Would you like to use Objects and Arrays in hooks more?

Use a messy object-like value as a memo with useDeepMemo

Installation

npm i react-deep-memo

Methods

useDeepMemo

Creates a memo of a value that is checked with deep-equal.

const value = useDeepMemo({ key: 'value' });

useEffect(() => {
	console.log('I am called once!');
}, [value]);

License

Copyright (c) 2022, Michael Szmadzinski. (MIT License)