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

@factor/theme-zeno

v1.8.30

Published

Zeno is a theme suited for the needs of SaaS and technology companies. Styles are powered by Tailwind, a low-level CSS framework.

Downloads

167

Readme

Zeno - Factor Theme

Zeno is a Factor theme suited for the needs of SaaS and technology companies. Styles are powered by Tailwind, a low-level CSS framework.

Install

To add Zeno to your Factor app, all you have to do is add it as a dependency:

npm add  @factor/theme-zeno

This will add it to your package.json and should be all you need to do to get it running.

Customization

Once you've added Zeno to your app, you can easily customize its settings via factor-settings.

The theme's settings can be referenced here.

To change any setting in this theme's factor-settings file, all you need to do is add the same setting in the settings file in your application.

As an example, adding the below to your factor-settings file will override the nav value in the theme. In effect, customizing the navigation.

export default {
  site: {
    nav: [
      {
        path: "/",
        name: "My Home",
      },
    ],
  },
}

Overriding Components

If you'd like to get more advanced with your customization, its also easy to override any templates or components used by the theme (or its plugins) via factor-settings.

As an example, to override the single post template used by the theme, first find the component in settings:

export default {
  // other settings
  components: {
    blogWrap: (): Promise<any> => import("./blog/blog-wrap.vue"),
    blogIndex: (): Promise<any> => import("./blog/blog-index.vue"),
    blogSingle: (): Promise<any> => import("./blog/blog-single.vue"),
    featuredImage: (): Promise<any> => import("./blog/el-featured-image.vue"),
    title: (): Promise<any> => import("./blog/widget-title.vue"),
    date: (): Promise<any> => import("./blog/widget-date.vue"),
    author: (): Promise<any> => import("./blog/widget-author.vue"),
    singleHeader: (): Promise<any> => import("./blog/el-single-header.vue"),
    entry: (): Promise<any> => import("./blog/widget-entry.vue"),
    social: (): Promise<any> => import("./blog/widget-social.vue"),
    pagination: (): Promise<any> => import("./blog/widget-pagination.vue"),
  },
  // other settings
}

You'll see that it is being loaded in as blogSingle, so all you have to do in your app to override with my-special-single.vue is:

export default {
  // other settings
  components: {
    blogSingle: (): Promise<any> => import("./my-special-single.vue"),
  },
  // other settings
}

Making sure to copy the original or create a new file in your app at that location.

Adding Additional Plugins, Routes

It's easy to build on top of the baseline functionality that themes create for you.

You can add additional routes and plugins in the standard ways discussed in the Factor Docs.