1.1.0 • Published 3 years ago

@hon2a/use-object-memo v1.1.0

Weekly downloads
94
License
MIT
Repository
github
Last release
3 years ago

use-object-memo

Memoizes object data, providing a reference that gets updated only when the data changes.

Use

Memoize object data to use e.g. as dependencies in subsequent useEffect calls. This is useful e.g. in hooks that accept options as object.

import { useEffect } from 'react'
import { useObjectMemo } from '@hon2a/use-object-memo'

export function useThisCoolHook(options) {
  const optionsMemo = useObjectMemo(options)
  useEffect(() => {
    // … perform some effect that should really only be performed when the options change
  }, [optionsMemo])
} 

Development

Install

Install dependencies using:

npm install

Develop

After you modify sources, run the following (or set up your IDE to do it for you):

  • format the code using npm run format
  • lint it using npm run lint
  • test it using npm test

and fix the errors, if there are any.

Publish

Publishing is done in two steps:

  1. Create a new version tag and push it to the repository:
    npm version <patch|minor|major>
    git push --follow-tags
  2. Build and publish the new version as a npm package:
    npm publish --access public