zoukankan      html  css  js  c++  java
  • nodejs生成模板文件

      之前为了学习,用vue-cli搭了一个前端架子,但是每次新建组件的时候都需要新建文件夹和.vue文件,感觉很繁琐。本着“懒惰是程序员的第一美德”的宗旨,用node写了一个简单的自动生成组件名字和内容的脚本。

    /**
     * node c componentName
     * @componentName {String} 组件名
     */
    
    const fs = require('fs');
    const path = require('path');
    
    // 获取到组件名
    const args = process.argv.splice(2);
    const componentName = args[0];
    
    console.log('prepare to creat a ' + componentName + ' component');
    
    let root = './src/components/';
    
    // 读取模板文件,并修改内容
    let template = fs.readFileSync(path.join(__dirname, './template.vue'), 'utf8');
    let content = template.replace(/componentName/g, componentName); // target file content
    
    // 目标文件夹和目标文件的路径
    let targetDirPath = path.join(__dirname, root, componentName);
    let targetFilePath = path.join(__dirname, root, componentName, componentName + '.vue');
    
    // mkdirSync
    if (!fs.existsSync(targetDirPath)) {
        fs.mkdirSync(targetDirPath);
        console.log('The ' + targetDirPath + ' folder has been created!');
    }
    
    // writeFile async
    if (!fs.existsSync(targetFilePath)) {
        fs.writeFile(targetFilePath, content, (err) => {
            if (err) throw err;
            console.log('The ' + targetFilePath + ' has been created!');
        });
    } else {
        console.error('error!
    ' + targetFilePath + ' has already been existed!');
    }

    template.vue的内容如下:

    <template>
      <div class="componentName">
        
      </div>
    </template>
    
    <script>
    export default {
      name: 'componentName',
      data () {
        return {
    
        }
      }
    }
    </script>
    
    <style lang="scss" rel="stylesheet/scss">
    
    </style>
  • 相关阅读:
    十大排序
    算法11----判断是否为回文词(双端队列判断)
    算法10-----分糖果
    算法9-----输出全排列(递归)---移除K个数,剩下最小数。
    算法8-----罗马字转整数(分治法)
    Python数据结构2-----队列和堆
    Python数据结构1-----基本数据结构和collections系列
    Python笔记22-----高阶函数
    10、TV UI
    9、创建向后兼容的用
  • 原文地址:https://www.cnblogs.com/xiaohaifengke/p/7693185.html
Copyright © 2011-2022 走看看