use-object

A custom React hook that lets you manipulate an object data structure.

Usage no npm install needed!

<script type="module">
  import useObject from 'https://cdn.skypack.dev/use-object';
</script>

README

NPM

use-object

A custom React hook that lets you manipulate an array data structure without ever needing extra utilities.

👉 Demo site and docs.

Start with:

npm install --save use-object

Then, import and use the hook:

import useMap from 'use-object'
// …in your functional component:
  const [ map, { get, set, update, getIn, remove, replace } ] = useMap(initialMap);

Docs

The complete documentation as well as a live demo is available here.

License

MIT © filipdanic

Related

If you like use-object you might find use-array useful as well.