0.1.0 • Published 6 years ago

ddvdd-cli v0.1.0

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

ddvdd Logo

DDVDD

A light tool to generate projects in an easy way.

Installation

npm install ddvdd-cli -g

or

git clone https://github.com/ddvdd008/fe-generator.git

cd ddvdd && npm install

npm link

Usage

Open your terminal and type ddvdd or ddvdd -h , you'll see the help infomation below:

  Usage: ddvdd <command>


  Commands:

    add|a      Add a new template
    list|l     List all the templates
    init|i     Generate a new project
    delete|d   Delete a template

  Options:

    -h, --help     output usage information
    -V, --version  output the version number

Note that if you are using MacOS, sudo was required while using commands add and delete.

Commands

add | a

This command would help you to add a new template to the templates.json, which will be used by Scion to generate projects.

$ ddvdd add

? Set the custom name of the template: my-first-template
? Owner/name of the template: ddvdd008/ddvdd
? Branch of the template: new
┌───────────────────┬────────────────┬────────┐
│ Template Name     │ Owner/Name     │ Branch │
├───────────────────┼────────────────┼────────┤
│ my-first-template │ ddvdd008/ddvdd │ new    │
└───────────────────┴────────────────┴────────┘
✔ New template has been added successfully!

ddvdd use download-git-repo to down load git repos. After answering 3 questions, you'll add a new template to ddvdd.

list | l

It shows you the templates list.

$ ddvdd list

┌────────────────────┬────────────────┬────────┐
│ Template Name      │ Owner/Name     │ Branch │
├────────────────────┼────────────────┼────────┤
│ my-first-template  │ ddvdd008/ddvdd │ new    │
├────────────────────┼────────────────┼────────┤
│ my-second-template │ ddvdd008/ddvdd │ master │
└────────────────────┴────────────────┴────────┘

init | i

After adding new templates, you could use this command to generate your own project by choosing template.

$ ddvdd init

? Template name: my-first-template
? Project name: my-project
? Where to init the project? ../
⠹ Downloading template...

New project has been initialized successfully!

It's easy, right?

delete | d

To delete a template, you could use this command:

$ ddvdd delete

? Which template you want to delete? my-second-template
┌───────────────────┬────────────────┬────────┐
│ Template Name     │ Owner/Name     │ Branch │
├───────────────────┼────────────────┼────────┤
│ my-first-template │ ddvdd008/ddvdd │ new    │
└───────────────────┴────────────────┴────────┘
✔ Template has been deleted successfully

Template

The most important part of ddvdd is template. All templates' infomation were list in the templates.json. A template means a project sample, which has a simple or complex file structure.

You can create your own templates repository, and push your templates in different branches. All you need to do then is to add the templates into ddvdd's templates.json.

License

ISC.