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 🙏

© 2024 – Pkg Stats / Ryan Hefner

nuxt-page-meta

v0.0.8

Published

This library is for - generating sitemap (with image sitemap) - generating robots.txt - easier managment for page specific meta desciption and meta keywords

Downloads

5

Readme

Nuxt Page Meta

This library is for

  • generating sitemap (with image sitemap)
  • generating robots.txt
  • easier managment for page specific meta desciption and meta keywords

TODO Features

  • open-graph data

Init

init json config files
yarn page-meta:init

nuxt.config

example: repository

modules: [
  'nuxt-page-meta'
]

Configurations

Config Key pageMeta

{
  domain: <main domain of your website>,
  robots: {
    acl: [
      {
        userAgent: <Array of agent>,
        disallow: <Array of path to block>,
        allow: <Array of path to allow>,
        crawlDelay: 2
      }
    ],
    domain: <Array of domains including alternative domains of the website>
  },
  page: {
    enable: <default to true>,
    metaJson: <json file location, default to ~/static-data/page-meta.json>,
  }
  sitemap: {
    enable: <default to true>,
    imgJson: <json file location, default to ~/static-data/sitemap-image.json>,
    dynamicPaths: <Async function that return array of page meta(refer to page-meta.json)>,
    exclude: <Array of path to exclude from sitemap>,
    imageDomain: <function to conditionaly append image url>,
    imageDirs: <Array of image directory>
  }
}

JSON Config files

page-meta.json

  • to configure page specific meta keywords nad description
[
  {
    "meta": {
      [meta name]: <content in string>
    },
    "path": <exact path>,
    "match": <path regexp, in string>
  }
]

sitemap-image.json

  • to add image sitemap in sitemap.xml
  "disabled": <Array of image path to exclude from sitemap>,
  "images": [
    {
      "images": <array of images in this page>,
      "path": <exact path>,
      "match": <path regexp, in string>
    }
  ],
  "unused": <array of unused image crawled by "page-meta:init" command>