Socket
Socket
Sign inDemoInstall

@limeyfy/react-seo

Package Overview
Dependencies
87
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @limeyfy/react-seo

A library to help with easily maintain good SEO in react. Made by "https://github.com/notlimey"


Version published
Weekly downloads
2
decreased by-77.78%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

React Better SEO

Maintaining good seo in react is not easy in itself. You can always use react-helmet to help you but understanding all the meta tags and so on can be hard. Therefore I made a npm package to help with easily maintaining good seo.

The package is based on https://www.npmjs.com/package/react-helmet.

Getting started

npm i --save @limeyfy/react-seo
// or
yarn add @limeyfy/react-seo

Example

import './App.css';
import { DefaultHelmet } from '@limeyfy/react-seo'

const App = () => {
  return (
    <div className="App">
      <DefaultHelmet title="Hey" subTitle="cool" />
    </div>
  );
}

export default App;

Test SEO

import './App.css';
import React, { useEffect } from 'react'
import { DefaultHelmet, CheckSeo } from '@limeyfy/react-seo'

const App = () => {

  // Call checkSeo in useEffect
  useEffect(() => {
    CheckSeo();
  }, [])

  return (
    <div className="App">
      <DefaultHelmet
        title="Limeyfy"
        subTitle="App"
      >
        <meta name='og:country-name' content='NORWAY'>
      </DefaultHelmet>
    </div>
  );
}

export default App;

Another example

import './App.css';
import { DefaultHelmet } from '@limeyfy/react-seo'

const App = () => {
  return (
    <div className="App">
      <DefaultHelmet
        title="Limeyfy"
        subTitle="App"
      >
        <meta name='og:country-name' content='NORWAY'>
      </DefaultHelmet>
    </div>
  );
}

export default App;

Params

  • title?: string;
  • subTitle?: string;
  • title?: string;
  • subTitle?: string;
  • titleDivider?: string;
  • keywords?: string;
  • description?: string;
  • subject?: string;
  • copyright?: string;
  • language?: string;
  • robots?: string;
  • revised?: string;
  • topic?: string;
  • summary?: string;
  • Classification?: string;
  • author?: string;
  • replyTo?: string;
  • owner?: string;
  • url?: string;
  • identifierURL?: string;
  • image?: string;
  • favIcon?: string;
  • children?: React.ReactNode;

Keywords

FAQs

Last updated on 02 Mar 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc