Socket
Socket
Sign inDemoInstall

astro-seo

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

astro-seo - npm Package Compare versions

Comparing version 0.0.1 to 0.1.1

10

package.json
{
"name": "astro-seo",
"version": "0.0.1",
"version": "0.1.1",
"description": "Makes it easy to add SEO relevant tags to your Astro app.",
"homepage": "https://github.com/jonasmerlin/astro-seo#readme",
"bugs": {
"url": "https://github.com/jonasmerlin/astro-seo/issues"
},
"repository": {
"type" : "git",
"url" : "https://github.com/jonasmerlin/astro-seo"
},
"exports": "./src/index.js",

@@ -6,0 +14,0 @@ "keywords": [

@@ -1,1 +0,48 @@

# astro-seo
![Astro SEO Logo](https://user-images.githubusercontent.com/5182256/131216951-8f74f425-f775-463d-a11b-0e01ad9fce8d.png)
# 🚀 Astro SEO
This [Astro](https://astro.build/) component makes it easy to add tags that are
relevant for seach engine optimization (SEO) to your pages.
Currently it's __very__ early in development. The ultimate goal is to make this
the one-stop shop for most of your SEO needs when developing Astro sites.
Pull requests and/or feature requests are very welcome!
## How To Use
In any of your Astro pages, import Astro SEO and then use the component inside
the `<head>` section of your HTML:
```jsx
---
import { SEO } from 'astro-seo'
---
<html lang="en">
<head>
<SEO
title="A Very Descriptive Title"
description="A heavily optimized description full of well-researched keywords."
/>
</head>
// ... rest of <head>
<body>
// ... body
</body>
</html>
```
## Supported Props
Propname | Type | Description
------------ | ------------- | -------------
title | string | The title of the page.
description | string | Text that gives a concise description of what your page is about.
## Acknowledgements
Astro SEO is _heavily_ inspired by [Next SEO](https://github.com/garmeeh/next-seo)
and all the amazing work Gary is doing developing it. Thanks Gary! ❤️

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc