npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@awssam/react-meta-plugin

v1.0.0

Published

A React plugin for managing page title and description meta tags dynamically (TypeScript).

Readme

@awssam/react-meta-plugin

@awssam/react-meta-plugin is a lightweight React package for dynamically managing meta tags and page titles in your React applications.


🌟 Features

  • Set page titles dynamically.
  • Manage <meta> tags for SEO and social media previews.
  • Lightweight and easy to integrate with your project.
  • Written in TypeScript for type safety.

📦 Installation

Install the package using npm:

npm install @awssam/react-meta-plugin

Or with Yarn:

yarn add @awssam/react-meta-plugin

🚀 Usage

Basic Example

Import the MetaTag component and use it in your application to dynamically set the title and meta description:

import React from "react";
import MetaTag from "@awssam/react-meta-plugin";

const HomePage: React.FC = () => (
  <div>
    <MetaTag title="Home Page" description="Welcome to the Home Page!" />
    <h1>Hello, world!</h1>
  </div>
);

export default HomePage;

Dynamic Usage

You can use MetaTag dynamically to update meta tags based on your application state:

import React, { useState } from "react";
import MetaTag from "@awssam/react-meta-plugin";

const App: React.FC = () => {
  const [title, setTitle] = useState("Default Title");

  return (
    <div>
      <MetaTag title={title} description="Dynamic description here." />
      <h1>{title}</h1>
      <button onClick={() => setTitle("Updated Title")}>Update Title</button>
    </div>
  );
};

export default App;

📜 Props

| Prop | Type | Default | Description | | ------------ | ------ | ------------- | ------------------------------------------------------- | | title | string | "" (empty) | The title of the page. | | description| string | "" (empty) | The meta description of the page (for SEO purposes). |


🛠️ Development

Building the Package

To build the package locally:

  1. Clone the repository:

    git clone https://github.com/awssam/react-meta-plugin.git
    cd react-meta-plugin
  2. Install dependencies:

    npm install
  3. Build the package:

    npm run build

✨ Contributing

Contributions are welcome! If you’d like to contribute, please follow these steps:

  1. Fork the repository.
  2. Create a new branch (git checkout -b feature-branch).
  3. Commit your changes (git commit -m 'Add new feature').
  4. Push to the branch (git push origin feature-branch).
  5. Open a pull request.