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

hexo-theme-white

v1.0.8

Published

simple, concise blog theme for [Hexo](https://hexo.io).

Downloads

10

Readme

White

simple, concise blog theme for Hexo.

Installation

Install

git clone https://github.com/helbing/hexo-theme-white.git themes/white

Enable

# _config.yml

theme: white

Dependencies

yarn add hexo \
  hexo-generator-feed \
  hexo-generator-index \
  hexo-generator-tag \
  hexo-renderer-ejs \
  hexo-renderer-marked \
  hexo-renderer-scss

yarn add --dev hexo-browsersync \
  hexo-server

you also can use npm to install dependency packages

Update

cd themes/white
git pull

Configuration

Basic

# themes/white/_config.yml

title: WHITE
description: "A simple, concise blog theme for Hexo."

Menu

# themes/white/_config.yml

menu:
  Home: /
  Tags: /tags
  About: /about
  Rss: /atom.xml

Rss

# themes/white/_config.yml

rss: /atom.xml

Copyright

# themes/white/_config.yml

copyright:
  name: helbing
  url: https://github.com/helbing

Favicon

copy your favicon.png into /source

# themes/white/_config.yml

favicon: /favicon.png

Social account

# themes/white/_config.yml

social:
  github:
    url: https://github.com/helbing
    icon: "fab fa-github"
  mail:
    url: mailto:[email protected]
    icon: "fas fa-at"
  xxx:
    url:
    icon:

you can find icons in fontawesome

Highlight

# _config.yml

highlight:
  enable: false
  line_number: false
  auto_detect: false
  tab_replace:

Disqus

# themes/white/_config.yml

disqus:
  enable: true
  shortname: # your disqus shortname

you can read the document

About me page

hexo new page "about"

edit source/about/index.md

---
title: about
date: 2019-01-30 09:58:54
type: about
author: # your name
avatar: # your avatar, like https://xxxx/xxxx.png
---

your infomation, like

Hello, my name is xxxx, I like

1. xxx
2. xxx
3. xxx
4. and so on

Tags page

hexo new page "tags"

edit source/tags/index.md

---
title: tags
date: 2019-01-25 18:40:18
type: tags
---

Create your first post

hexo new post <title>

edit source/_posts/<title>.md

---
date: 2018-12-14
title: # post title, recommended length 20
description: # your post description, recommend length 100 - 120
tags: ["hello", "world"] # post tags
cover: # your post cover, like https://xxxx/xxxx.png, recommend 1920px * 1080px
---

your post content