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

thomzz-hexo-theme-doc

v1.0.2

Published

A fork from zalando-incubator hexo-theme-doc, a documentation theme for Hexo

Downloads

6

Readme

hexo-theme-doc

License: MIT dependencies Status Codacy Badge Codacy Badge Build Status npm version

LiveDemo: https://zalando-incubator.github.io/hexo-theme-doc

hexo-theme-doc is a documentation theme for Hexo, the fast and powerful blog framework powered by Node.js. It differs from other Hexo themes by allowing you to present documentation—especially REST API documentation.

Created by JavaScript/Node.js developers, hexo-theme-doc capitalizes on Hexo's extensibility and system of plugins for adding custom tags, customizing layouts, and processing multiple kinds of sources, which makes generating static websites simpler than other tools.

hexo-theme-doc's features include:

  • A clean and responsive layout
  • Search
  • Swagger integration
  • Simple, configurable navigation, including for Tables of Contents
  • Google Analytics
  • Customizable logo and favicon

Visit our demo to view an example of hexo-theme-doc in action.

Theme Mockup

Table of Contents

Get Started

Our step-by-step guide aims to get you running with hexo-theme-doc in five minutes or less.

For a deeper dive, check our user documentation.

Feature Roadmap

hexo-theme-doc is currently in development at Zalando and useful out-of-the-box to others. We welcome suggestions/feedback and contributions, especially on these planned features:

  • More sophisticated control over navigation/automatic filesystem-based navigation (community feedback priority)
  • Swagger to HTML (this feature is in beta phase)
    • Make implementation more robust, and covering all edge cases (development priority)
    • Support for Swagger 3.0
    • Ability to fetch Swagger files from remote locations
    • Ability to provide request/response examples in an external file
    • Exclusion of APIs/operations from output
    • Markdown content support

For more info on our progress, visit the changelog contributions.

Contributing

There are many ways to contribute to hexo-theme-doc:

  • give a github star to the project
  • create github issues and help us to find bugs and/or request features.
  • contribute to the source code

Please check our CONTRIBUTING guidelines.

Development

To get started with hexo-theme-doc development, you need to install NodeJS and Git. Then install hexo-cli globally:

$ npm install hexo-cli -g

Get the theme source and install the dependencies:

$ git clone [email protected]:zalando-incubator/hexo-theme-doc.git
$ cd hexo-theme-doc && npm install

Ensure that you can successfully run test and linting tasks:

$ npm run test && npm run lint

If you want to update the visual aspects of your front-end, we suggest using our user documentation site as a playground for previewing your changes. First, link the theme package globally with:

$ cd hexo-theme-doc && npm link

Then get the user documentation source:

$ git clone [email protected]:zalando-incubator/hexo-theme-doc.git hexo-theme-doc-site
$ cd hexo-theme-doc-site
$ git fetch --all && git checkout gh-pages-source
$ npm install

The documentation source resides in this repository as well but just on a different branch called: gh-pages-source

Now link the theme package as a dependency (this will use your local version):

$ npm link hexo-theme-doc

Finally run the built-in server:

$ hexo s

Open your browser at http://localhost:4000, and hopefully you'll see the documentation site up and running.

Test

Run tests with Facebook's Jest (currently the only testing tool compatible with hexo-theme-doc):

$ npm run test

To generate coverage reports run:

$ npm run test:coverage

Reports are generated at target/coverage.Sometimes you'll only need to run one test suite focused on a single problem; do that by running:

$ npm run test -- <regexp>

<regexp> represents a Regular Expression, matching test file path(s)—eg. npm run jest -- search*.

Lint

Lint the code using ESLint (currently the only linting tool compatible with hexo-theme-doc):

$ npm run lint

To apply automatic fixes to your code, run it with the --fix option:

$ npm run lint --fix

Compile

Use Webpack and node-sass to compile your JavaScript source and style source for the browser:

$ npm run compile

!!! ALWAYS !!! compile and commit distribution artifacts after updating Javascript and/or SCSS files.

Release (recommended workflow)

Only the maintainers** perform releases. Our preferred workflow:

  1. Bump version in package.json
  2. Run npm run prerelease
  3. Commit and push
  4. Open a PR
  5. When PR is merged, tag and push

Credits

License

MIT license with exceptions. See the full license for details.

Copyright 2017, Zalando SE

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.