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 🙏

© 2025 – Pkg Stats / Ryan Hefner

exizt.moglog

v3.2.20

Published

> h1, h2 태그 등을 읽어서 목차(TOC;Table of Contents)를 생성하는 javascript.

Readme

Moglog

h1, h2 태그 등을 읽어서 목차(TOC;Table of Contents)를 생성하는 javascript.

Links

  • Git : https://github.com/exizt/moglog
  • Demo : https://exizt.github.io/moglog/

Usage

기본적인 사용법 (html에서)

<script type="module">
    import { Moglog } from './dist/moglog.mix.js';
    const moglog = new Moglog(options)
    moglog.build()
</script>

파일 목록

  • dist/moglog.mix.js : css를 포함한 js파일
  • dist/moglog.js : css를 제외한 js파일
  • dist/moglog.css : toc를 위한 styles

npm, typescript에서 이용할 때

npm 패키지 설치

ts 파일에서

import { Moglog } from 'exizt.moglog'
const moglog = new Moglog({
    toc: "#toc_container"
})
moglog.build()

Options

| name | type | default | description | | :--- | :--- | :---: |:--- | | options.toc | String | '' | 목차가 들어갈 곳의 Selector | | options.contents | String | '' | 읽어들일 곳의 Selector | | options.header | String | '' | 목차의 앞부분에 붙일 필요가 있는 html | | options.htags | String | 'h1,h2,h3,h4,h5,h6' | 읽어들일 h태그 종류 Selector | | options.linkPrefix | String | '' | 링크에 붙게될 prefix | | options.tocClass | String | 'moglog-toc' | 생성된 목차를 둘러싸는 부분에 사용할 클래스명 | | options.callback | Function | null | 목차 생성후 실행될 함수 | | options.position | String | 'top' | toc 옵션에서 지정한 영역에서 어디에 위치할 지. - top | prepend | before : 상단에 위치- replace : 덮어씀- bottom | append | after : 뒤에 위치 |

사용법 상세

간단한 예제

const moglog = new Moglog({
  toc:"#toc",
  contents: "#content"
});
moglog.build()

헤더에 태그를 추가

const moglog = new Moglog({
  toc: "#toc",
  contents: "#content",
  header: "<h3>목차<h3>"
})
moglog.build()

브라우저 지원

ie11 미지원

LICENSE

MIT