0.1.0 • Published 4 years ago

cidori v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

cidori

Simple CLI to convert directory to json file.

List Features

  • Convert directory to JSON.

Install

yarn add -D cidori // or
npm install --save-dev cidori

Usage

Create a folder project and sub directory name with folder.

./project
|-folder
|--hello.txt -> "caption=hello"
  • Please type with npx cidori folder output.json than get the result at bellow.
// ./output.json
{
    "folder": [
        {
            "text": {
                "caption": "hello"
            },
        },
    ],
}

Thanks, Feel free to contribute!