パッケージの詳細

react-simple-page-title

taniotanio7235MIT0.1.0

Change page titles declaratively in React

react, page title, declarative, head

readme

react-simple-page-title

Change the document.title declaratively inside your React app - without any dependencies.

Why?

I've wanted to simply change my page title dynamically in the SPA I was developing without any unnesesary features that could increase the bundle size.

⚠ This library doesn't support SSR - for alternatives see Alternatives

Install

npm

npm install react-simple-page-title

yarn

yarn add react-simple-page-title

Usage

Component

import { PageTitle } from 'react-simple-page-title';

const MyComponent = () => {
  return (
    <PageTitle title="Use this string as title of the page">
  )
}

Hook

import { usePageTitle } from 'react-simple-page-title';

const MyComponent = () => {
  usePageTitle("Use this string as title of the page");

  return (
    // ...
  )
}

Alternatives

This library doesn't support SSR. For more advanced alternative that supports SSR check out react-helmet or react-head.

If you're using a framework use a solution that was made for your framework: