/dir-text

text directories and files in a directory

Primary LanguageJavaScriptMIT LicenseMIT

dir-text

Express the file directory structure in text like this

example
├── app
│   ├── controller
│   │   └── home.js
│   └── router.js
├── config
│   └── config.default.js
└── package.json

use

  const { dirText } = require('dir-text');

  // use default options
  dirText();

  // use custom ignores directories
  dirText(undefined, undefined, ['node_modules', '.git']);

  // use custom base path
  dirText('./');

  // use custom output file path
  dirText(undefined, 'output.md');

TypeScript

You can use TypeScript from version 0.0.3

checkList

  • readme
  • TypeScript
  • test
  • doc