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 🙏

© 2026 – Pkg Stats / Ryan Hefner

adv_seo_master

v1.0.0

Published

`Advanced SEO Master` is an npm package designed to automatically enhance your project's performance and search engine optimization. It provides a suite of tools for core SEO functionalities and advanced features to ensure your web presence is optimized f

Readme

Advanced SEO Master

Advanced SEO Master is an npm package designed to automatically enhance your project's performance and search engine optimization. It provides a suite of tools for core SEO functionalities and advanced features to ensure your web presence is optimized for search engines.

Features

Core SEO Features

  • Meta Tag Generation: Easily generate essential meta tags for better search engine understanding and display.
  • Sitemap Generation: Create XML sitemaps to help search engines crawl and index your site more effectively.
  • Schema Markup (JSON-LD) Generation: Implement structured data markup to improve your visibility in search results with rich snippets.

Advanced Features

  • Performance Optimization: Tools to optimize your HTML content by removing unnecessary elements, improving page load times.
  • Content Analysis: Analyze your content for word count and keyword density to ensure it's well-optimized for target keywords.
  • Broken Link Checking: Automatically identify and report broken links on your website to maintain a healthy link profile.

Installation

To install the package, use npm:

npm install adv_seo_master

Usage

const AdvancedSEO = require('adv_seo_master');
const seo = new AdvancedSEO();

// Generate Meta Tags
const metaTags = seo.generateMetaTags({
  title: 'My Awesome Website',
  description: 'A description of my awesome website.',
  keywords: 'awesome, website, seo'
});
console.log(metaTags);

// Generate Sitemap
const urls = [
  'https://example.com/',
  'https://example.com/about',
  'https://example.com/contact'
];
const sitemap = seo.generateSitemap(urls);
console.log(sitemap);

// Generate Schema Markup
const schemaData = {
  "@context": "https://schema.org",
  "@type": "Organization",
  "name": "My Company",
  "url": "https://example.com",
  "logo": "https://example.com/images/logo.png"
};
const schemaMarkup = seo.generateSchemaMarkup(schemaData);
console.log(schemaMarkup);

// Optimize Performance
const htmlContent = `
  <!-- This is a comment -->
  <html>
    <head>
      <title>  My Page  </title>
    </head>
    <body>
      <h1>Hello World</h1>
      <p>  Some content here.  </p>
    </body>
  </html>
`;
const optimizedHtml = seo.optimizePerformance(htmlContent);
console.log(optimizedHtml);

// Analyze Content
const contentToAnalyze = "This is some content for analysis. Content is key for SEO.";
const analysisResult = seo.analyzeContent(contentToAnalyze);
console.log(analysisResult);

// Check Broken Links
seo.checkBrokenLinks('https://example.com/non-existent-page')
  .then(result => console.log(result));
seo.checkBrokenLinks('https://www.google.com')
  .then(result => console.log(result));

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the ISC License.