cmicrojs
v1.1.0
Published
快速构建模版插件
Downloads
3
Readme
Cmicrojs
用法
适用于 node.js 环境下,快速构建项目模版脚手架插件
import cmicrojs from 'cmicrojs'
const init = async () => {
await cmicrojs([
{
name: 'react',
display: 'React',
color: 'cyan',
},
{
name: 'vue',
display: 'Vue',
color: 'green',
variants: [
{
name: 'vue',
display: 'JavaScript',
color: 'yellow'
},
{
name: 'vue-ts',
display: 'TypeScript',
color: 'blue'
}
]
}
])
}
init()
模版目录结构
.
├── template-react
│ └── index.js
│ ├── package.json
├── template-vue
│ ├── README.md
│ ├── _gitignore
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ └── vite.svg
│ ├── src
│ │ ├── App.vue
│ │ ├── assets
│ │ │ └── vue.svg
│ │ ├── components
│ │ │ └── HelloWorld.vue
│ │ ├── main.js
│ │ └── style.css
│ └── vite.config.js
└── template-vue-ts
├── README.md
...