A simple CLI for creating your projects
yarn add eitri -g
Usage: eitri <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
rename|r Rename a template
Options:
-h, --help output usage information
-V, --version output the version number
This command would help you to add a new template to the templates.json
, which will be used by Eitri
to generate projects.
$ eitri add
? Set the custom name of the template: react
? Owner/name of the template: BooheeFE/react-template
? Branch of the template: master
βββββββββββββββββ¬ββββββββββββββββββββββββββ¬βββββββββ
β Template Name β Owner/Name β Branch β
βββββββββββββββββΌββββββββββββββββββββββββββΌβββββββββ€
β react β BooheeFE/react-template β master β
βββββββββββββββββ΄ββββββββββββββββββββββββββ΄βββββββββ
β New template has been added successfully!
Eitri
use download-git-repo to down load git repos. After answering 3 questions, you'll add a new template to Eitri
.
It shows you the templates list.
$ eitri list
βββββββββββββββββ¬ββββββββββββββββββββββββββ¬βββββββββ
β Template Name β Owner/Name β Branch β
βββββββββββββββββΌββββββββββββββββββββββββββΌβββββββββ€
β react β BooheeFE/react-template β master β
βββββββββββββββββΌββββββββββββββββββββββββββΌβββββββββ€
β vue β BooheeFE/vue-template β master β
βββββββββββββββββ΄ββββββββββββββββββββββββββ΄βββββββββ
After adding new templates, you could use this command to generate your own project by choosing template.
$ eitri init
? Template name: react
? Project name: boohee
? Where to init the project? ./
β Ή Downloading template...
New project has been initialized successfully!
To delete a template, you could use this command:
$ eitri delete
? Which template you want to delete? vue
βββββββββββββββββ¬ββββββββββββββββββββββββββ¬βββββββββ
β Template Name β Owner/Name β Branch β
βββββββββββββββββΌββββββββββββββββββββββββββΌβββββββββ€
β react β BooheeFE/react-template β master β
βββββββββββββββββ΄ββββββββββββββββββββββββββ΄βββββββββ
β Template has been deleted successfully
To rename a template, you could use this command:
$ eitri rename
? Which template you want to rename? vue to vue-ts
βββββββββββββββββ¬ββββββββββββββββββββββββββ¬βββββββββ
β Template Name β Owner/Name β Branch β
βββββββββββββββββΌββββββββββββββββββββββββββΌβββββββββ€
β vue-ts β BooheeFE/react-template β main β
βββββββββββββββββ΄ββββββββββββββββββββββββββ΄βββββββββ
β Template has been deleted successfully
The most important part of Eitri 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 Eitri's templates.json
.