generator-webpack-app

2.1.0 • Public • Published

generator-webpack-app

Yeoman generator

Note

  • rename gitignore to .gitignore when generates template from this 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-webpack-app from npm, run:

npm install -g generator-webpack-app

Finally, initiate the generator:

yo webpack-app

Why YEOMAN

Yeoman was released at Google I/O 2012. Session: Better Web App Development Through Tooling. Focus on development not debugging.
Disparate tools without smooth integration.

  • Go from your idea to a rough prototype in ten minutes
  • Reduce friction from the things that you should be doing, such as testing
  • DRY applies to using tools, too!

So Yeoman was introduced.

What is YEOMAN

Yeoman is an open source project which consists of tools and frameworks intended to help developers quickly build high quality web applications. To do so, Yeoman provide a generator ecosystem.

The Yeoman workflow comprises three types of tools:

  1. scaffolding tool (yo)
  2. build tool (Grunt, Gulp, Webpack)
  3. package manager (Bower, npm)

One-line Install

npm install -g yo

How to create a generator

  1. npm install -g generator-generator
    (Yeoman generator to generate a Yeoman generator)
  2. yo generator
  3. Put your web app template into app/templates
  4. Edit index.js
  5. If you want to publish your generator to npm server
    • no npm account: npm adduser
    • has npm account: npm login
  6. npm publish
    Remider: Everytime you make change to generator and want to publish to npm server again, make sure you change your version in the package.json

Create template from generator

  1. npm install –g generatorName
  2. Delete .yo-rc.json in the parent directory
    or all the folders of created template will not in the current directory
  3. yo
    then choose generator

Readme

Keywords

Package Sidebar

Install

npm i generator-webpack-app

Weekly Downloads

1

Version

2.1.0

License

MIT

Last publish

Collaborators

  • mavisjheng