Giter Site home page Giter Site logo

generator-alitv's Introduction

generator-alitv Build Status

Yeoman generator

Getting Started

What is Yeoman?

Trick question. It's not a thing. It's this guy:

Basically, he wears a top hat, lives in your computer, and waits for you to tell him what kind of application you wish to create.

Not every new computer comes with a Yeoman pre-installed. He lives in the npm package repository. You only have to ask for him once, then he packs up and moves into your hard drive. Make sure you clean up, he likes new and shiny things.

npm install -g yo

Yeoman Generators

Yeoman travels light. He didn't pack any generators when he moved in. You can think of a generator like a plug-in. You get to choose what type of application you wish to create, such as a Backbone application or even a Chrome extension.

To install generator-alitv from npm, run:

npm install -g generator-alitv

Finally, initiate the generator:

yo alitv           // 初始化一个标准的项目,生成其目录结构
yo alitv:lib       // 初始化一个lib文件中js库
yo alitv:component // 初始化一个react component文件
yo alitv:page      // 初始化一个页面
yo alitv:xtpl      // 初始化一个xtpl页面
yo alitv:test      // 初始化一个测试文件
yo alitv:sw        // 创建service worker文件
gulp              // 进行项目构建
gulp server       // 开启开发模式的前端服务器,并watch项目文件变化自动构建
gulp test         // 启动测试文件中测试代码
gulp sw           // 构建service worker文件
└── project root
        ├── gulp.js          // gulp的脚本入口文件
        ├── gulp             // 存放gulp构建相关模块,可根据需要自行修改
        ├── package.json     // 存放项目基本信息和node的依赖关系配置
        ├── README.md        // 项目说明文档
        ├── doc              // 存放生成项目API文档
        ├── test             // 存放测试文件,可执行`yo alitv:test`生成一个test
        ├── node_modules     // 存放项目的node模块
        └── src              // 项目源文件目录
            ├── component    // 存放react组件文件,可执行`yo alitv:component`生成一个component
            ├── lib          // 存放基础js和css文件和第三方库
            ├── page         // 存放demo页面和入口文件,可执行`yo alitv:page`生成一个page
            ├── service      // 存放封装好的ajax调用接口
            └── util         // 存放应用级别的可重用组件
        └── build            // 项目构建目录,目录结构与src保持一致

特性

  • webpack中利用babel解析es2015为es5和component文件中react组建,代码位置:gulp/webpack.js
  • gulp server开启之后,watch监听开启,单个页面的改变之后针对单个页面的构建,代码位置:gulp/watch.js
  • 构建完成之后,build文件中每个页面文件的css和js文件都会生成一个map文件,支持source-map的浏览器可以轻松的定位到源文件
  • test文件夹中可以编写自己的测试用例,运行测试用例可以用个终端命令gulp test运行,也可以通过测试文件夹中的html文件在浏览器中运行,代码位置:gulp/test.js
  • 增加service worker功能,可以离线缓存资源
  • 支持xtpl模板页面解析以及自定义xtpl模板数据

License

MIT

generator-alitv's People

Contributors

liudan92221 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

kmhook

generator-alitv's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.