背景
最近自己寫了下自己項目的react的腳手架症脂,以前一直采用種子文件進行復制诱篷,最近看到y(tǒng)o细办,想通過命令行自動去生成所需文件當然,對于Yeoman來說是大材小用茴肥,但小小的嘗試也能基本掌握Yeoman的用法吧瞬铸。
步驟
1.下載安裝yo和generator-generator
在做這個步驟之前,必須安裝好node和npm,之后全局安裝yo和generator-generator
$ sudo npm install -g yo
$ sudo npm install -g generator-generator
2.運行g(shù)enerator-generator來創(chuàng)建我們自己需要的generator的基礎(chǔ)框架
$ sudo yo generator
回答下問題,就可以生成你需要的基礎(chǔ)框架,如我這里的鏈接
3.準備好模版,將模版復制到generator/app/templates文件夾下
4.編輯index.js
接下來編輯generator/app/index.js文件夾,通過提出問題,收集答案,來生成我們需要的文件。具體看代碼注釋也切。
'use strict';
const Generator = require('yeoman-generator');
const chalk = require('chalk');
const yosay = require('yosay');
const _ = require('lodash');
const fs = require('fs');
module.exports = class extends Generator {
prompting() {
// Have Yeoman greet the user.
this.log(yosay(
'Welcome to the kickass ' + chalk.red('generator-test') + ' generator!'
));
const prompts = [
{
type: 'list',
name: 'type',
message: '請選擇你要創(chuàng)建的類型?',
choices: ['routes', 'components']
}, {
type: 'input',
name: 'routesNme',
message: '請輸入你要創(chuàng)建文件的名稱!',
default: 'Feed'
}
];
// 提出問題腰湾,收集答案
return this.prompt(prompts).then(props => {
// To access props later use this.props.someAnswer;
this.props = props;
});
}
writing() {
if (this.props.type === 'routes') {
// 模版
let routesTmpl = _.template(this.fs.read(this.templatePath('./Feed/Feed.jsx')));
this.fs.write(this.destinationPath(`src/routes/${this.props.routesNme}/${this.props.routesNme}.jsx`), routesTmpl({
routes_name: this.props.routesNme
}));
this.fs.copy(
this.templatePath('./Feed/Feed.less'),
this.destinationPath(`src/routes/${this.props.routesNme}/${this.props.routesNme}.less`)
);
} else if (this.props.type === 'components') {
let routesTmpl = _.template(this.fs.read(this.templatePath('./Feed/Feed.jsx')));
this.fs.write(this.destinationPath(`src/components/${this.props.routesNme}.jsx`), routesTmpl({
routes_name: this.props.routesNme
}));
this.fs.copy(
this.templatePath('./Feed/Feed.less'),
this.destinationPath(`src/components/${this.props.routesNme}/${this.props.routesNme}.less`)
);
}
}
install() {
// this.installDependencies();
}
};