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

@danielcobo/docs

v1.0.20

Published

Automate repo documentation

Downloads

22

Readme

docs

Automate repo documentation

🧭 Table of contents

✨ Benefits

  • [x] Boilerplates for LICENSE and README
  • [x] Customisable
  • [x] Simple handlebars template
  • [x] Much less overhead than JSDoc
  • [x] Leverages data from package.json

🎒 Requierments

To use this package you will need:

🚀 Quickstart

Setup

In the terminal run:

npm install @danielcobo/docs -D

Note: Don't forget to init your package using npm init first.

In your package.json file add "docs": "docs" to the list of scripts.

  "scripts": {
    "docs": "docs"
  },

Note: In case you're wondering, @danielcobo/ is just a namespace scope - an NPM feature. Scopes make it easier to name modules and improve security.

Usage

Important: running the code below will overwrite existing README.md and LICENSE.md

In the terminal run:

npm run docs

If there are no template files (README.hbs and LICENSE.hbs) boilerplates will be generated to get you started.

Do not edit the .md files directly, instead edit the .hbs templates. After that run npm run docs to regenerate the documentation.

The data passed to templates consists of :

  • definition - an array of definitions based on JSDoc style comments in your code
  • repo - object consisting of data parsed from package.json

For details see documentation below.

There are also 5 HandlebarsJS helpers you can use:

  • noscope
  • nogit
  • major
  • minor
  • typecode

| Helper example | Description | | -------------- | ----------- | | {{noscope repo.name}} | returns repository name without the scope. Useful for links, etc. | | {{nogit repo.repository.url}} | returns the git repository url | | {{major repo.version}} | returns major semver version (example: 1) | | {{minor repo.version}} | returns minor semver version (example: 1.0) | | {{{typecode type}}} | returns type names split by \| and with appropriate anchor links. |

Note: replace type with appropriate scoped reference.

You can refer to Handlebars docs regarding the templating syntax.

📘 Documentation

Definition : Object

| Name | Type | Description | | ---- | ---- | ----------- | | description | string | Type/function description text | | name | string | Type/function name | | type | string | Type (i.e. function, method, object...) | | isTypedef | boolean | True if typedef (else assume function) | | param | Array.Param | Function parameters | | property | Array.Property | Type/function properties | | returns | ReturnValue | Function return value | | source | Source | Type/function definition source |

Source: src/parseComments.js:164

ReturnValue : Object

| Name | Type | Description | | ---- | ---- | ----------- | | type | string | Data type of return value | | description | string | Description of return value |

Source: src/parseComments.js:142

Source : Object

| Name | Type | Description | | ---- | ---- | ----------- | | line | number | Source line number | | path | string | Source file path | | url | string | Relative source file url |

Source: src/parseComments.js:134

Property : Object

Type definition property

| Name | Type | Description | | ---- | ---- | ----------- | | name | string | Property name | | type | string | Property value data type | | description | string | Property description | | optional | boolean | True/false if property is optional |

Source: src/parseComments.js:113

Param : Object

Function parameter

| Name | Type | Description | | ---- | ---- | ----------- | | name | string | Parameter name | | type | string | Argument data type | | description | string | Parameter description | | optional | boolean | True/false if parameter is optional | | default | * | Default argument value |

Source: src/parseComments.js:94

Data : Object

| Name | Type | Description | | ---- | ---- | ----------- | | definition | Array.Definition | Definition object | | repo | Package | Object of package.json data |

Source: src/index.js:19

🆘 Troubleshooting

Remember to use run when calling the script.

npm docs will fail.

npm run docs will work.

🤝 Contributing

Anyone can contribute

Contributions come in many shapes and sizes. All are welcome. You can contribute by:

  • asking questions
  • suggesting features
  • sharing this repo with friends
  • improving documentation (even fixing typos counts 😉)
  • providing tutorials (if you do, please let me know, I would love to read them)
  • improving tests
  • contributing code (new features, performance boosts, code readability improvements..)

Rules for contributions

General guidelines:

  • there are no dumb questions
  • be polite and respectful to others
  • do good

When coding remember:

  • working > maintainability > performance
  • best code is no code
  • be descriptive when naming
  • keep it DRY
  • do test

Contribution licence: All contributions are considered to be under same license as this repository.

🧪 Testing

Testing suite: 🃏 Jest | Test command: npm test

Mutation testing suite: 👽 Stryker Mutator | Mutation test command: npm run mutation

If you intend to develop further or contribute code, then please ensure to write and use testing. Strive for 100% code coverage and high mutation scores. Mutation score 100 is great, but it's not always neccessary (if there are valid reasons).

⚖️ License

MIT License