An open API service indexing awesome lists of open source software.

https://github.com/cqb13/folder-mapper

Maps out a folders structure and creates a tree view of it.
https://github.com/cqb13/folder-mapper

cqb13 folder folder-structure folder-tree folder-viewer folders tree tree-structure treeview vue vue3

Last synced: 2 months ago
JSON representation

Maps out a folders structure and creates a tree view of it.

Awesome Lists containing this project

README

        

# Folder Mapper

[View Projects](https://foldermap.cqb13.dev/)

## About:
This website takes in a folder, and maps out the folder structure, in a tree like structure.

## Technologies:
- Vue 3
- Vite
- Tailwind CSS
- TypeScript
- Vercel

## Structure:
```
folder-mapper
└── tsconfig.node.json
└── tsconfig.json
└── tailwind.config.cjs
└── postcss.config.cjs
└── package.json
└── package-lock.json
└── index.html
└── README.md
└── .prettierrc
└── .prettierignore
└── .gitignore
├── public
│ └── icon.svg
├── src
│ └── style.css
│ └── main.ts
│ └── App.vue
│ ├── assets
│ │ └── icon.svg
│ │ └── github.svg
│ │ └── types
│ │ └── directoryMap.ts
│ │ └── file.ts
│ ├── components
│ │ └── CheckBox.vue
│ │ └── TextInputGroup.vue
│ ├── utils
│ │ └── getDirectoryMap.ts
│ │ └── createFileTree.ts
│ │ └── isIgnored.ts
│ └── vite-env.d.ts
└── vite.config.ts
```