article-tool

article-tool is a terminal tool that can manage your articles.

Usage no npm install needed!

<script type="module">
  import articleTool from 'https://cdn.skypack.dev/article-tool';
</script>

README

article-tool

article-tool is a terminal tool that can manage your articles.

Getting Started

# install 
npm install article-tool -g

# set config  
article-tool config

# build json from files
article-tool build 

# parse files from json
article-tool parse 

Directory structure

.
├── articles                                  // article root directory
│   ├── tech                                  // article group
│   │   ├── javascript.md                     // article file                            
│   │   └── nodejs.md                         // article file
│   └── note                                  // article group directory
│       ├── myPlan.md                         // article file                             
│       └── happy.md                          // article file
├── package.json                              // package.json is needed                                
.