1.0.39 • Published 12 months ago

auto-document v1.0.39

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

auto-document

This Tool detect the Functions, Comments, Parameters and Returns of your node.js project and help document them in doc.html file.

(이 도구는 당신의 Node.js프로젝트의 함수,주석,매개변수,반환을 감지해 doc.html 혹은 doc.md(개발예정)으로 만들어 줍니다.)

You don't need to learn complicated config or How to Use, Just Code and Import One Start Doc

(복잡한 설정이나 사용법을 배울 필요 없이 코딩를 작성 하고 startDoc 하나만 Import하면 됩니다.)

Installation(설치)

Warning : This Lib will Support Only ESM

npm install auto-document

How to Use(사용방법)

Just Write Code and Import startDoc from "auto-document"

  • Example

  • import startDoc from "auto-document";
        /** this is Test */
        function test() {
          console.log("this is test");
          return;
        }
      startDoc;
  • Start your Project with Node

  • node {your main js file containing startDoc Func}
  • Log will write like this

  • ----------Start Auto Documentation----------
    Start Convert test2.js
    ┌─────────┬────────────┬─────────────────┬──────────────┬─────────────┬─────────────┐
    │ (index) │ filePath   │ comment         │ functionName │ params      │ returnValue │
    ├─────────┼────────────┼─────────────────┼──────────────┼─────────────┼─────────────┤
    │ 0       │ 'test2.js' │ 'this is test2' │ 'test2'      │ 'no params' │ 'none'      │
    └─────────┴────────────┴─────────────────┴──────────────┴─────────────┴─────────────┘
  • open doc.html

Config(설정)

You dont need to config anything, this lib working on default_config, i will develop few config option customizing as soon as

아무런 설정도 할 필요가 없습니다! 하지만 사용의 다양성을 위해 몇가지 커스터마이징이 가능한 옵션을 빠른 시일내에 개발 할 예정입니다.

1.0.39

12 months ago

1.0.38

12 months ago

1.0.33

12 months ago

1.0.37

12 months ago

1.0.36

12 months ago

1.0.35

12 months ago

1.0.34

12 months ago

1.0.32

12 months ago

1.0.31

12 months ago

1.0.30

12 months ago

1.0.29

12 months ago

1.0.28

12 months ago

1.0.27

12 months ago

1.0.26

12 months ago

1.0.25

12 months ago

1.0.24

12 months ago

1.0.23

12 months ago

1.0.22

12 months ago

1.0.21

12 months ago

1.0.2

12 months ago

1.0.1

12 months ago

1.0.0

12 months ago