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

@carrotwu/generatoc

v1.0.1

Published

Automatically generate table of content from heading of HTML document( forked from https://github.com/gadzan/generatoc/)

Downloads

7

Readme

GeneraToc

Travis (.org) npm 20downloads npm bundle size Coveralls github License Version GitHub package.json version HitCount

GeneraToc generates a table of contents (TOC) from headings in an HTML document. This is useful for documentation websites or SSR pages because it makes them easier to navigate.

This library was inspired by Tocify and Tocbot, but GeneraToc uses native DOM methods with no other dependencies and unlike Tocbot, GeneraToc does NOT rely on id attribute to navigate to the heading.

DEMO

https://gadzan.github.io/generatoc/demo/

Installation

Install it with npm.

npm install --save generatoc

OR Install it with yarn.

yarn add generatoc

OR include in browser environment include the script at the bottom of the page before the closing body tag.

<script src="https://cdn.jsdelivr.net/npm/generatoc/build/generatoc.min.js"></script>

Include CSS

in html file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/generatoc/build/generatoc.min.css">

OR

If you installed it with npm you might try importing the styles from 'node_modules'

@import 'generatoc/src/style/main.css';

Usage

Define a div element with id attribute

<div id="toc"></div>

Use GeneraToc with typescript:

import generatoc from 'generatoc'
// Typescript
// (Required) Article content selector, default as '.post-content'
const content: string = '.post-content'

// (Optional) Select h2 ~ h5 heading level, it is also a defualt setting if you leave it undefined
const heading: string[] = ['h2', 'h3', 'h4', 'h5']

// (Optional) TOC element is append to #toc element, it is also a defualt setting if you leave it undefined
const selector: string = '#toc'

generatoc.init({ content, heading, selector })

Use GeneraToc with javascript:

// JavaScript
import generatoc from 'generatoc'
const content = '.post-content'
const heading = ['h2', 'h3', 'h4', 'h5']
const selector = '#toc'
generatoc.init({ content, heading, selector })

Use in browser environment

const content = '.post-content'
const heading = ['h2', 'h3', 'h4', 'h5']
const selector = '#toc'
generatoc.init({ content, heading, selector })

You need to know when importing css file

If the selector is not #toc you have to modify css file manully, just replace all #toc string with your selector name in css file which can be found at ./node_modules/generatoc/src/style/main.css

Development

yarn install
npm run dev

Other init options

{
  // scrollHistory: Accepts a boolean: true or false
  // Adds a hash to the page url, to maintain history, when scrolling to a TOC item
  scrollHistory: false,

  // scrollOffset: Accepts a number: default to 0
  // Scroll to the target with a vertical offset(pixel). If you have a fixed header in your page, this is what you need to set.
  scrollOffset: 0,

  // duration: Accepts a number: default to 7
  // The duration of scroll animation, a larger number means slower scroll. please input with a number larger than 1.
  duration: 7,
}

TODO

  • [x] Destory method
  • [x] Reload method
  • [x] Development env
  • [x] Test cases
  • [x] Show and close animation
  • [ ] More configurations

Using with SSR

If you are using GeneraToc with SSR framwork, like Nuxt.js, please add transpile param to nuxt.config.js

build: {
  transpile: ['generatoc']
}

LICENSE

MIT