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-generator-alias

v1.0.0

Published

Alias generator for Hexo

Downloads

783

Readme

hexo-generator-alias

Build Status NPM version Coverage Status

Generates alias pages for redirecting to posts, pages or URL.

Install

$ npm install hexo-generator-alias --save
  • Hexo 3 & 4: >= 1.0
  • Hexo 2: 0.1.x

Usage

You can specify aliases in _config.yml:

alias:
  api/index.html: api/classes/Hexo.html
  plugins/index.html: https://github.com/tommy351/hexo/wiki/Plugins

In the above example, when you access http://example.com/api/, you will be redirected to http://example.com/api/classes/Hexo.html

You could also configure it in your post and page files:

source/cv/index.md
---
title: some title
date: some date
+ alias: about/index.html

+ alias:
+ - foo/index.html
+ - bar/index.html
---

In the above example, when you access http://example.com/about/, you will be redirected to http://example.com/cv/

You could also configure multiple aliases. So in the second example,

  • http://example.com/foo/ ⇒ http://example.com/cv/
  • http://example.com/bar/ ⇒ http://example.com/cv/

Alias must ends with .html, examples of valid value include:

  • "about/index.html" (alias is http://example.com/about/)
  • "foo/bar.html" (alias is http://example.com/foo/bar)

Redirect

Available in post and page.

source/cv/index.md
---
title: some title
date: some date
+ redirect: http://target-site.com/
---

http://example.com/cv/ ⇒ http://target-site.com/

source/_posts/foo.md
---
title: foo
date: 2020-01-02 00:00:00
+ redirect: /2020/03/04/bar/
---

http://example.com/2020/01/02/foo/ ⇒ http://example.com/2020/03/04/bar/

Redirect to a post

If you specify a value without any slash, the article will be redirected to a post with that filename.

For example, there is an existing post "source/_posts/foo-post.md" that is available at http://example.com/2020/01/02/foo-post/,

source/baz-page.md
---
title: baz
+ redirect: foo-post
---

http://example.com/baz-page ⇒ http://example.com/2020/01/02/foo-post/

If a post could not be located (due to incorrect value), the article will be redirected to http://example.com/foo-post