1.6.0 • Published 18 days ago

@zfben/astro-head v1.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
18 days ago

Effortless SEO for Astro with @zfben/astro-head

License: MIT NPM Version

Managing SEO for your Astro website just got easier with @zfben/astro-head. This package simplifies the process of adding essential meta tags and open graph/twitter meta data to your Astro components, boosting your website's search engine visibility.

Key Features

  • Simplified Integration: Seamlessly integrate SEO elements directly within your Astro components. No complex configurations needed!
  • Automated Meta Generation: Automatically generate open graph and twitter meta tags, saving you time and ensuring consistent data across your site.
  • Leverages Astro Configuration: Utilizes your existing site settings in astro.config.js to automatically generate accurate URLs within meta tags.

Getting Started

  1. Installation: Install the package using npm: npm install @zfben/astro-head
  2. Configuration: Ensure you have a site property defined within your astro.config.js file. This provides the base URL for your website.
  3. Import and Usage: Import the Head component from the package and use it within your Astro components:
---
import { Head } from "@zfben/astro-head";
---

<html>
  <head>
    <Head
      title="Hello world"
      path="/"
    />
  </head>
</html>

Supported Props

PropOutputFormat
titletitle, og:title, twitter:titlestring, required
pathcanonical, url, og:url, twitter:urlstring, required, must be started with /
typeog:typestring, default is website
charsetcharsetstring, default is utf-8
langog:localestring
descriptiondescription, og:description, twitter:descriptionstring
imageimage, og:image, twitter:imagestring
siteNameog:site_namestring
authorauthor, article:authorstring
twittertwitter:site, twitter:creatorstring, must be started with @
alternatesalternate, og:locale:alternatelang and path list
gaGoogle Analytics' tracking codestring, must be started with G-
clarityClarity's tracking codestring

Links

1.6.0

18 days ago

1.5.0

19 days ago

1.4.0

20 days ago

1.3.1

27 days ago

1.3.0

28 days ago

1.2.1

1 month ago

1.2.0

1 month ago

1.1.0

1 month ago

1.0.0

1 month ago