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

raml2html-modern-theme

v1.0.8

Published

Modern theme for raml2html utility.

Downloads

212

Readme

raml2html-modern-theme

Modern theme for raml2html utility.

Theme displays navigation tree on the left, documentation in the middle and type + curl examples on the right.

Screenshot 1 Screenshot 2 Screenshot 3

Custom Annotations

Theme supports the following annotations and displays them in a special way.

deprecated

# Definition
deprecated:
  displayName: Deprecated
  description: The method is deprecated.
  allowedTargets: [ Method ]
  type: nil

#Usage
(deprecated):

Applicable to a method. If used the Deprecated tag is displayed in the method description and also an icon in a method header.

notImplemented

# Definition
notImplemented:
  displayName: Not Implemented
  description: The functionality is not implemented.
  allowedTargets: [ Method ]
  type: nil

# Usage
(notImplemented):

Applicable to a method. If used the Not implemented tag is displayed in the method description and also an icon in a method header.

experimental

# Definition
experimental:
  displayName: Experimental
  description: The functionality is experimental.
  allowedTargets: [ Method ]
  type: nil

# Usage
(experimental):

Applicable to a method. If used the Experimental tag is displayed in the method description and also an icon in a method header.

breakingChange

# Definition
breakingChange:
  displayName: Breaking Change
  description: This method definition contains a breaking change.
  allowedTargets: [ Method ]
  type: nil

# Usage
(breakingChange):

Applicable to a method. If used the Breaking Change tag is displayed in the method description and also an icon in a method header.

proposal

# Definition
proposal:
  displayName: Proposal
  description: This method is a proposal.
  allowedTargets: [ Method ]
  type: nil

# Usage
(proposal):

Applicable to a method. If used the Proposal tag is displayed in the method description and also an icon in a method header.

permissions

# Definition
permissions:
  displayName: Permissions
  description: List of required permissions to access the endpoint
  type: array
  allowedTargets: [ Method ]

# Usage
(permissions):
  - READ
  - WRITE
  - DELETE

Applicable to a method. If used the special Required permissions block is displayed in a method description which enumarates specified items.

docMenu

# Definition
docMenu:
  displayName: Documentation Menu
  description: Configuration of the menu behaviour.
  allowedTargets: [ Resource ]
  type: object
  properties:
    expand:
      type: boolean
      description: If the current resource should be expanded in the menu.
      required: false
    root:
      type: boolean
      description: If the current resource should be at root level.
      required: false

# Usage
(docMenu):
  expand: true
  root: true

Applicable to a resource. When expand is true the resource will be expanded in the menu. When root is true the resource will be rendered at root level no matter what.

docCategory

# Definition
docCategory:
  displayName: Documentation Category
  description: Name of the category the current item should belong to.
  allowedTargets: [ TypeDeclaration ]
  type: string

# Usage
(docCategory): Errors

Applicable to a type declaration. If used the type will be rendered in the menu under given category.

License

The MIT License (MIT)

Copyright (c) 2019 Jiri Hybek [email protected] (jiri.hybek.cz)

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.