0.1.0 • Published 2 years ago

react-simple-page-title v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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: