0.1.9 • Published 5 months ago

next-meta v0.1.9

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

🗣️ next-meta

npm NPM npm Coveralls github codecov CircleCI Known Vulnerabilities Twitter Follow

Easily compose and manage meta and open graph tags in your Next.js app/site.

NOTE: This package is for use with Next.js’ Pages Router. Some App Router helpers are in the works and will live here in the future as well.

Install

Via npm

npm install next-meta

Via Yarn

yarn add next-meta

How to use

Setting defaults within the Next.js App with MetaProvider.

import { ReactElement, ReactNode } from 'react'
import { NextPage } from 'next'
import { AppProps } from 'next/app'
import Head from 'next/head'
import { usePathname } from 'next/navigation'
import { MetaProvider } from 'next-meta'

// eslint-disable-next-line @typescript-eslint/ban-types
export type NextPageWithLayout<P = {}, IP = P> = NextPage<P, IP> & {
  getLayout?: (page: ReactElement) => ReactNode
}

type AppPropsWithLayout = AppProps & {
  Component: NextPageWithLayout
}

const BASE_URL = 'https://test.com'
const SITE_NAME = 'Example Site'
const DEFAULT_TITLE = 'An example title for using next-meta in your _app file.'
const DEFAULT_DESCRIPTION = 'Hopefully this makes things a little easier with adding good meta/og tags to your site.'
const DEFAULT_IMAGE_URL = '/social-share.png'

function CustomApp({ Component, pageProps }: AppPropsWithLayout) {
  const getLayout = Component.getLayout ?? ((page) => page)

  const metaUrl = usePathname()

  return (
    <>
      <Head>
        <link rel="canonical" href={`${BASE_URL}${metaUrl}`} />
        <link rel="icon" type="image/png" href="/favicon.ico" />
      </Head>
      <MetaProvider
        baseUrl={BASE_URL}
        description={DEFAULT_DESCRIPTION}
        imageUrl={DEFAULT_IMAGE_URL}
        imageWidth={1200}
        imageHeight={630}
        siteName={SITE_NAME}
        title={DEFAULT_TITLE}
        twitterCard="summary_large_image"
        twitterSite="@exampleSite"
        url={metaUrl}
      >
        {getLayout(<Component {...pageProps} />)}
      </MetaProvider>
    </>
  )
}

export default CustomApp

Specifying page specific meta tags using the SiteMeta component.

import Head from 'next/head'
import { SiteMeta } from 'next-meta'

const ExamplePage = () => (
  return (
    <>
      <Head>
        <SiteMeta
          imageUrl="/share/about-social.png"
          title="About"
          siteName="Example Site"
          url="/about"
        />
      </Head>
      {...page code...}
    </>
  )
)

Properties

PropDescription
audioUrl?: stringURL to audio file.
audioType?: stringMimetype of audio file.
baseUrl?: stringUsed specify base url to use for all xUrl props, allowing you to simply pass in url="/about" vs. url="https://yourdomain.com/about".debug?: booleanCurrently not used, but things are in the works.
description?: stringYou know, <meta name="description" content="You know, a description" />
determiner?: stringThe word that appears before this object's title in a sentence.An enum of (a, an, the, "", auto). If auto is chosen, the consumer of your data should chose between "a" or "an". Default is "" (blank).
imageUrl?: stringURL to image.
imageWidth?: number \| stringWidth of the image. (Typically: 1200px)
imageHeight?: number \| stringHeight of the image. (Typically: 630px)
locale?: stringLocale of site/page
siteName?: stringUse for og:site_name and appended to <title>
title?: stringTitle of page. Generates: <title> + og:title + twitter:title tags
twitterCard?: stringTwitter card display type.
twitterCreator?: stringUsername to associate with a page/post.
twitterSite?: stringUsername to associate with the site/app.
url?: stringURL of page/site.
videoUrl?: stringURL to video file.
videoType?: stringMimetype of the video file.

License

MIT © Ryan Hefner

0.1.9

5 months ago

0.1.8

5 months ago

0.1.7

5 months ago

0.1.6

5 months ago

0.1.5

5 months ago

0.1.4

5 months ago

0.1.3

5 months ago

0.1.2

5 months ago

0.1.1

5 months ago

0.1.0

5 months ago