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

astro-simpleanalytics-plugin

v0.3.13

Published

Use the Astro Simple Analytics Plugin to quickly integrate Simple Analytics in your Astro project with parameter control over several features.

Downloads

63

Readme

Astro Simple Analytics Plugin

NPM Package Version GitHub contributors GitHub Sponsors ISC license Downloads of NPM package

Simple Analytics is a clean, simple, and privacy friendly analytics tool. Actionable data in a beautiful dashboard. It does not use cookies and you can bypass ad blockers. Make sure to signup to get most value out of this plugin.

Astro is a website build tool for the modern web — powerful developer experience meets lightweight output.

This is a Simple Analytics plugin for Astro.

🚀 Installation

First, install the astro-simpleanalytics-plugin package using your package manager. Run this in the terminal:

# using PNPM
pnpm install astro-simpleanalytics-plugin
# Using Yarn
yarn add astro-simpleanalytics-plugin
# Using NPM
npm install astro-simpleanalytics-plugin

✨ Usage

You then need to import astro-simpleanalytics-plugin and then use the <SimpleAnalytics /> component and add the desired properties to it. This will render out the tags in the location you place the <SimpleAnalytics /> component in. We suggest using your layout from the ./layouts folder (e.g. ./layouts/Layout.astro and/or other equivalent layouts), just before the closing </body> tag.

  // Layout.astro
  ---
+ import { SimpleAnalytics } from 'astro-simpleanalytics-plugin';
  ---

  <!doctype html>
  <html>
    <head>...</head>
    <body>
      ...
+     <SimpleAnalytics />
    </body>
  </html>

Simple Analytics should be ready to go with zero config.

📃 Complete parameter configuration reference

These are all the available parameter options for this plugin where you choose to embed it, alongside the default values for each parameter:

<SimpleAnalytics
  debug={false}                  {/* (false | true) */}
  allEnvironments={false}        {/* (false | true) */}
  partytown={false}              {/* (false | true) */}
  light={false}                  {/* (false | true) */}
  collectDNT={false}             {/* (false | true) */}
  strictUTMs={false}             {/* (false | true) */}
  allowParams={undefined}        {/* (undefined | string) */}
  customHostname={undefined}     {/* (undefined | string) */}
  customDomain={undefined}       {/* (undefined | string) */}
  ignorePages={undefined}        {/* (undefined | string) */}
  nonUniqueHostnames={undefined} {/* (undefined | string) */}
  ignoreMetrics={undefined}      {/* (undefined | string) */}
  crossorigin="anonymous"        {/* (undefined | "anonymous" | "use-credentials") */}
/>

Read more about the available features in the dedicated features document.

🐞 Troubleshooting

If your Simple Analytics fails to render or load properly, or fails to send data into your dashboard, make sure you:

💡 Examples

🙏 Contributing

Bug reports and pull requests are always welcome on our GitHub.

If you'd like to contribute with code, please read our contribution guidelines in the CONTRIBUTING.md guide and see our roadmap.

Thank you!

📝 Other details

This package is available as open source under the terms of the ISC License.

See CHANGELOG.md for a history of changes to this integration.


This package has initially been used for building Resurse.dev - an online resource repository for people starting out in digital careers from Development to Design, from Marketing to Security, created for free by Viorel and his YouTube community. It was made by Viorel Mocanu after a challenge from Adriaan van Rossum.