1.0.1 • Published 10 years ago
tatami v1.0.1
Tatami
Tatami is command line tool for making folder structure.
Getting started
npm install -g tatami- Create Tatamifile
tatami inittatami init create Tatamifile in current directory.
Edit Tatamifile
Run tatami
tatami runtatami run parses Tatamifile, make folder structure.
Learn Tatamifile DSL in 30 seconds
- Tatami parses indent.
//This is Sample Tatami file
server/
server.js
public/
img/
index.html
dist/
main.css
src/
main.scss
gulpfile.js
README.md- In above case, 'tatami run' result is...
% tree .
.
├── README.md
├── Tatamifile
├── gulpfile.js
├── public
│ ├── dist
│ │ └── main.css
│ ├── img
│ ├── index.html
│ └── src
│ └── main.scss
└── server
└── server.js
5 directories, 7 files- In case of "Directory", after directory name, attach "/".
directory/ -> 'directory'- When word includes extension or no extension, tatami recognizes "File".
Makefile -> 'file'
README.md -> 'file'- "Comment" is allowed only oneline comment, begin "//"
// This is Comment -> 'comment'tatami parses by oneline, at this stage only one line comment is allowed.
Other command
tatami rollbacktatami rollback parses Tatamifile, rollback before tatami run.
tatami pathtatami path output path to result parsing Tatamifile.
Link
page: http://tommykishi.github.io/tatami/ npm:
Lisense
MIT