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

@fragy/purity

v0.5.9

Published

Default theme for fragy.

Downloads

19

Readme

Purity

Purity is the default theme for Fragy, it's light-weight, and customizable.

📕 How to use

Fisrt of all, you must have an initialized Fragy project.

Then, use npm to install this theme package:

npm install @fragy/purity

⚙ Configuration

For full configuration, see config.js.

Color

You can choose any color as the primary color for Purity, here's an example:

{
  theme: {
    package: '@fragy/purity',
    config: {
      color: {
        primary: '#40aeff',
        autoGenerate: true,
      },
    },
  },
}

Prefetch

Purity enabled prefetch for article and article list by default.

It allows the user to interact with the page in such a way that the content of the article or list appears to be loaded instantly. User no longer have to wait for the loading process.

If you want to disable this feature, you can set articleList.prefetch and article.prefetch to false.

Obviously, you can disable the prefetch of article and article list separately.

Text Align

Purity use justify align for the text by default, if you don't want it, you can set articleList.useJustifyAlign and article.useJustifyAlign to false.

Font

Purity supports custom fonts, you can set the font you like to fontFamily in the theme config.

If you want to use font from Google Fonts, you should visit Google Fonts to pick a font, then you will get a link tag code looks like this:

<link href="https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&display=swap" rel="stylesheet">

You should put the words after family= and before the &display= to the theme config, here's an example:

{
  theme: {
    package: '@fragy/purity',
    config: {
      gfont: {
        enable: false,
        family: 'Noto+Sans+SC:wght@100;300;400;500;700;900',
      },
    },
  },
}

For China users, you may need a proxy to accelerate the loading of fonts, you can set googleApisHost and gstaticHost under the gfont scope to specific a host to load font files.

Footer

Purity provide a default footer which contains the "Powered by" text, CC-BY-4.0 license icon (disabled by default), and a light/dark mode swticher.

If you don't want it, you can set footer.poweredby to false.

Each features can be enabled or disabled separately.

Comment

Purity now has integrated Valine as comment component.

See more details on Valine's official site.

Vendors

All external vendors will be loaded from CDN, Purity uses CDNJS by default, which provided by Cloudflare.

You can replace the default source urls with your owns, see more details on config.js.

Compatibility

| Feature | Compatibility | | ----------- | ------------- | | MarkVue | ✔ | | GitHub Mode | ✔ |

License

MIT