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 🙏

© 2025 – Pkg Stats / Ryan Hefner

gitbook-plugin-lanying-growai-logo

v0.0.3

Published

GitBook Plugin to add your logo and title easily and Beautifully. Support for inserting custom DOM and Style.

Downloads

82

Readme

gitbook-plugin-logo

NPM npm

GitBook Plugin to add your logo and title easily and Beautifully. Support for inserting custom DOM and Style.

一个在 Gitbook 网站中添加你的 logo标识 的插件,使用简单,自带美观的样式,支持自定义 DOM 和 CSS 样式。

特性

  • 使用简单
  • 自带默认样式
  • 支持自定义行内样式
  • 支持自定义 DOM 和 CSS

安装

npm install gitbook-plugin-logo --save

简单使用

book.json 文件中增加配置:

{
  "plugins": [
    "logo"
  ],
  "pluginsConfig": {
    "logo": {
      "logo": "http://lanfly.vicp.io/logo.png",
      "title": "提莫的神秘商店",
      "url": "http://timor.tech"
    }
  }
}

上面的配置会默认添加 rootStyle 样式:

text-align: center;
padding: 20px;

自定义行内样式

你可以添加自定义的样式,它们会以 行内样式 添加到 DOM 元素上。

{
  "plugins": [
    "logo"
  ],
  "pluginsConfig": {
    "logo": {
      "rootStyle": "background-color: #a5b807; text-align: center; padding: 20px;",
      "logo": "http://lanfly.vicp.io/logo.png",
      "logoStyle": "width: 70px;",
      "title": "提莫的神秘商店",
      "titleStyle": "color: #FFF; text-align: center;",
      "url": "http://timor.tech"
    }
  }
}

rootStyle 是最外层 DOM 的样式,上面的配置会生成下面的 DOM 结构:

<a href="$url" class="book-logo-root">
  <div class="book-logo" style="$rootStyle">
    <img src="$logo" style="$logoStyle" />
    <p class="book-title" style="$titleStyle">$title</p>
  </div>
</a>

自定义 DOM 和 CSS

如果你想让你网站的 logo 变得更酷炫,你可以自定义 DOM 和 CSS 来达到效果。

{
  "plugins": [
    "logo"
  ],
  "pluginsConfig": {
    "logo": {
      "style": "logo/style.css",
      "template": "logo/template.html"
    }
  }
}

插件会从你指定的文件中读取内容,然后将它们插入到每个页面中。

template 文件内容会插入到 body .book-summary 元素里面,作为第一个子元素。

style 文件内容会使用 <style type="text/css"></style> 包装然后追加到 head

BUG 报告

https://github.com/LanFly/gitbook-plugin-logo/issues