npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

context-creator

v0.1.30

Published

A functional approach to creating React contexts and providers

Downloads

47

Readme

Context Creator

Installation

npm install context-creator

Usage

import contextCreator from 'context-creator'

const counterContext = contextCreator({
  name: 'counter',
  useValue (props: { initialCount: number }) {
    const [count, setCount] = useState(props.initialCount)
    function increment () {
      setCount(current => current + 1)
    }
    const value = { count, increment }
    return value
  }
})

function CounterConsumer () {
  const counter = counterContext.use()
  return (
    <button onClick={counter.increment}>
      {counter.count}
    </button>
  )
}

function App() {
  return (
    <counterContext.Provider initialCount={5}>
      <CounterConsumer />
    </counterContext.Provider>
  )
}

Problem

Creating and using React contexts out of the box requires repeating boilerplate code for each new context:

  • defining a context type
  • creating a context
  • defining a provider component that wraps the internal context provider
  • defining a hook to consume the context

Without Context Creator

context/counter.tsx

import { createContext, useContext } from 'react'

interface CounterContextValue {
  count: number
  increment: () => void
}

const counterContext = createContext<CounterContextValue | undefined>(undefined)

export function CounterProvider (props: {
  initialCount: number
}): JSX.Element {
  const [count, setCount] = useState(props.initialCount)
  function increment () {
    setCount(current => current + 1)
  }
  const value = { count, increment }
  return (
    <createdContext.Provider value={value}>
      {providerProps.children}
    </createdContext.Provider>
  )
}

export function useCounterContext (): CounterContextValue {
  const value = useContext(counterContext)
  if (value == null) {
    const message = `useCounterContext must be used within a Provider`
    throw new Error(message)
  }
  return value
}

component/CounterConsumer.tsx

import { useCounter } from '../context/counter'

export default function CounterConsumer () {
  const counter = useCounter()
  return (
    <button onClick={counter.increment}>
      {counter.count}
    </button>
  )
}

App.tsx

import { CounterProvider } from './context/counter'
import CounterConsumer from './component/CounterConsumer'

export default function App() {
  return (
    <CounterProvider initialCount={5}>
      <CounterConsumer />
    </CounterProvider>
  )
}

Solution

Context creator minimizes this boilerplate. The contextCreator function defines the context, the provider, and consuming hooks for you. For TypeScript developers, it also infers the type of the context value and the provider's props.

contextCreator returns an object with a .Provider component and a .use hook to consume the context. To create the provider and hooks, call contextCreator and pass a single object with two parameters:

  • name, a string is used to identify the context in error messages.
  • useValue, a hook that will be called inside the provider.

The useValue hook should take a single argument to receive the props passed to the created provider. The provider's props will be passed to useValue. contextCreator will infer the type of the created Provider's props from useValue's argument.

useValue's return value can be consumed by any child of the provider. contextCreator will infer the type of the created context's value from useValue's return.

With Context Creator

context/counter.ts

import contextCreator from 'context-creator'

export const counterContext = contextCreator({
  name: 'counter',
  useValue: (props: { initialCount: number }) => {
    const [count, setCount] = useState(props.initialCount)
    function increment () {
      setCount(current => current + 1)
    }
    const value = { count, increment }
    return value
  }
})

component/CounterConsumer.tsx

import { counterContext } from '../context/counter'

export default function CounterConsumer () {
  const counter = counterContext.use()
  return (
    <button onClick={counter.increment}>
      {counter.count}
    </button>
  )
}

App.tsx

import { counterContext } from './context/counter'
import CounterConsumer from './component/CounterConsumer'

export default function App() {
  return (
    <counterContext.Provider initialCount={5}>
      <CounterConsumer />
    </counterContext.Provider>
  )
}

ContextCreation

contextCreator returns an object of type ContextCreation, which takes two generic type parameters:

  • ContextValue, the type of the context value returned by the useValue hook.
  • ProviderProps, the type of the props passed to the created provider.
interface ContextCreation <ContextValue, ProviderProps> {
  use: () => ContextValue
  useMaybe: () => ContextValue | undefined
  Provider: React.FC<{ children: ReactNode } & ProviderProps>
}

.useMaybe

The .use hook will throw an error if used outside a provider. If you need to consume the context in a component that might be rendered outside a provider, call the .useMaybe hook.

import contextCreator from 'context-creator'

const counterContext = contextCreator({
  name: 'counter',
  useValue (props: { initialCount: number }) {
    const [count, setCount] = useState(props.initialCount)
    function increment () {
      setCount(current => current + 1)
    }
    const value = { count, increment }
    return value
  }
})

function RequiredConsumer () {
  const counter = counterContext.use()
  return <>Count: {counter.count}</>
}

function OptionalConsumer () {
  const counter = counterContext.useMaybe()
  if (!counter.provided) {
    return <>Unknown counter</>
  }
  return <>Count: {counter.value.count}</>
}

function App() {
  return (
    <>
      {/* Throws the error "(counter) useContext must be used within a Provider" */}
      <RequiredConsumer />


      {/* Renders "Unknown counter" with no error */}
      <OptionalConsumer />
    </>
  )
}

MaybeValue

.useMaybe returns an object with two properties:

  • value, the context value if it is provided.
  • provided, a boolean indicating if the context is provided.

If provided is false, value is undefined. If provided is true, value is the context value. The type signature of MaybeValue is:

interface ProvidedValue <ContextValue> {
  value: ContextValue
  provided: true
}
interface UnprovidedValue {
  value: undefined
  provided: false
}
type MaybeValue <ContextValue> = ProvidedValue<ContextValue> | UnprovidedValue