Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

use-count

lewisblackburn10MIT1.1.3TypeScript support: included

use-count

react, react-hook, hook, count, views, use-hook

readme

use-count

CI Status

React Hook to use realtime countapi.xyz data and display it in your application.

Features

  • 📦 Tiny: use-count weighs in at less than 6.71 KB minified and gzipped.
  • 🌳 Universal: we dist esm and cjs modules.
  • 👨‍💻 Developer friendly: Helpful development messages that are stripped away in production
  • ⌨️ Strongly typed: use-count is written in TypeScript and encourages good practices this way

Installation

With NPM

npm i --save use-count

Or, with yarn:

yarn add use-count

Usage

import { useCount } from 'use-count';

const App = () => {
  const { value: hits } = useCount('namespace', 'key');

  return <p>{hits}</p>;
};