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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hexo-evernote-html

v0.0.5

Published

Hexo plugin: convert evernote client output html to hexo blog

Readme

将印象笔记导出的 html 直接在 hexo 中使用,暂不支持国际版

使用方法

一、创建 hexo 目录

hexo init blog
cd blog

二、安装本插件

npm install --save hexo-evernote-html

输入hexo --help查看,如果有ever选项说明安装成功

Usage: hexo <command>

Commands:
  clean     Remove generated files and cache.
  config    Get or set configurations.
  deploy    Deploy your website.
  ever      Evernote generator.                 <- 该指令
  ... 

三、在 hexo 目录下创建一个 everntoe 文件夹

blog
   evernote  <- 创建它
   source
   themes
   ...

从印象笔记客户端选择想要导出的笔记导出 html 格式到 evernote 文件夹 PS:mac 端的 html 会被导入到 evernote/我的笔记/,不过没有关系

四、修改_config.yamlpost_asset_foler的值为true 因为笔记的附件(包括图片)将使用相对路径:

# 默认是 false
post_asset_folder: true 

五、构建博客,不要使用 hexo generate

hexo ever

静态页面将生成在 public 目录,可以通过 http-server 来预览

hs public

六、部署博客,参考部署 | Hexo

清理的指令还是 hexo clean,扩展了对 <hexo dir>/source的清理, 如果你的./source本身保存有文章,请先保存到印象笔记中,以免被删除。 hexo serve 不管用,需要重写该指令,也用不到。 可以通过笔记标题来分layout,比如:

  • foo.page => layout: page
  • bar.draft => layout: draft
  • baz => layout: post 默认为 post

Todo

  • [ ] 添加通过印象笔记存储 _config.yaml 的支持