react-speedo
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

react-speedo

Tooling to help you monitor the performance of your React applications.

Install

Via npm

npm install react-speedo

Via Yarn

yarn add react-speedo

How to use

useSpeedo (Hook)

import { useRef, useState } from 'react'
import { useSpeedo } from 'react-speedo'

const YourComponent = () => {
  const { begin, end, value } = useSpeedo()
  const [run, setRun] = useState(true)
  const animationFrameRef = useRef(null)

  useEffect(() => {
    const tick = async () => {
      begin()

      ...[some async tasks or other heavy code]

      end()
    }

    if (run && !animationFrameRef.current) {
      animationFrameRef.current = requestAnimationFrame(tick)
    } else if (!run && animationFrameRef.current) {
      cancelAnimationFrame(animationFrameRef.current)
      animationFrameRef.current = null
    }
  }, [run])

  return <p>{`${value}fps`}</p>
}

License

MIT © Ryan Hefner

/react-speedo/

    Package Sidebar

    Install

    npm i react-speedo

    Weekly Downloads

    24

    Version

    0.1.0

    License

    MIT

    Unpacked Size

    56.4 kB

    Total Files

    20

    Last publish

    Collaborators

    • ryanhefner