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

gimtoc

v2.0.0

Published

Generate and Inject Markdown Table of Contents

Downloads

61

Readme

Generate & Inject Markdown TOC

Generate and Inject Markdown Table of Contents

npm Build status Test coverage Buy me a beer

Install

This package is ESM only : Node 14+ is needed to use it and it must be imported instead of required.

# install gimtoc globally as  binary
npm install -g gimtoc

# install gimtoc as npm dependency
npm install --save gimtoc

CLI Usage

# print package version
gimtoc -v
gimtoc --version

# print CLI usage
gimtoc -h
gimtoc --help

# print merged README.md with injected TOC
gimtoc -f README.md -s "Table of Contents"
gimtoc --file README.md --section "Table of Contents"

# update the README.md's section called TOC
gimtoc --file README.md --section 'TOC' --output README.md

# update the README.md's TOC section using pipe
cat README.md | gimtoc -i -s 'TOC' -o README.md

# generate a TOC with BitBucket compatibility (option --anchor)
gimtoc --file README.md --section 'TOC' --anchor --output README.md

Programmatic Usage

import { gimtoc } from 'gimtoc';

const mdContent = `
  # Awesome Markdown Documentation

  ## Table of Contents

  ## Usage

  npm install -g gimtoc

  ## License

  MIT
`;

const injectionSection = 'Table of Contents';
const options = {
  // use this option to generate links anchors
  // the default value is false
  anchors: false
  // see https://www.npmjs.com/package/markdown-toc#options for other options
};

gimtoc(mdContent, injectionSection, options)
  .then((mdContentWithToc) => console.log(mdContentWithToc));

Output

Print the markdown content with the generated TOC in the injection section

# Awesome Markdown Documentation

## Table of Contents

- [Usage](#usage)
- [License](#license)

## Usage

npm install -g gimtoc

## License

MIT

Options

Gimtoc use markdown-toc to generate Markdown TOC. To configure the TOC generation, please refer to the markdown-toc documentation for options description.

Title ignored by default

By default, gimtoc use options.firsth1 === false to remove the markdown title from the generated TOC. You can overwrite this by setting options.firsth1 to true.

Injection section ignored by default

Since we perform an injection in a markdown section, the injection section is ignored when generating the TOC.

Development Setup

  1. Install Nix Package Manager

  2. Install direnv with your OS package manager

  3. Hook it direnv into your shell

  4. At the top-level of your project run:

    direnv allow

    The next time your launch your terminal and enter the top-level of your project, direnv will check for changes.

Contribute

Please follow CONTRIBUTING.md.

Versioning

Given a version number MAJOR.MINOR.PATCH, increment the:

  • MAJOR version when you make incompatible API changes,
  • MINOR version when you add functionality in a backwards-compatible manner, and
  • PATCH version when you make backwards-compatible bug fixes.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.

See SemVer.org for more details.

License

Under the MIT license. See LICENSE file for more details.