Frequently Asked Questions

What are the goals of the project?

What is a command-line interface?

What is a package manager?

How does Yeoman differ from build tools, such as Grunt or Gulp?

How does Yeoman differ from tools like Brunch or Ember-cli

How do I register or unregister a package on Bower?

Will the Yeoman project be providing Generators for popular frameworks?

What license is Yeoman released under?

What should I do before submitting an issue through GitHub?

npm appears to have installed Yeoman but yo still gives me “command not found”.

I’m getting EMFILE, too many open files

What should I use for documenting my app?

How can I disable Insight or Update Notifier?

Can I use livereloading with a custom webserver?

What should I do after cloning a web application generated with Yeoman?

What can I do if npm install -g yo fails on OS X with `sh: node: command not found?

What are the goals of the project?

The short-term goals for Yeoman are to provide developers with an improved tooling workflow so that they can spend less time on process and more time focusing on building beautiful web applications. Initially, we hope to make it as easy as possible to work with existing frameworks and tools developers are used to using.

Long-term, the project may also assist developers with creating applications using modern technologies such as Web Components.

What is a command-line interface?

A command-line interface is a means for developers to interact with a system using text commands. On Linux or OSX, this is often done using the terminal. On Windows, the command shell (cmd.exe) or PowerShell, but we recommend you use cmder instead for an improved experience.

What is a package manager?

A package manager is a tool for automating the process of installing, upgrading, configuring and managing dependencies for projects. Good examples of package manager would be npm (Node.js), Bower (Web), Pypi (Python), Gem (Ruby), Composer (PHP), NuGet (.NET), etc.

How does Yeoman differ from build tools, such as Grunt or Gulp?

Yeoman builds upon a number of open-source tools to offer an opinionated workflow that helps developers achieve common tasks more easily. Gulp and Grunt are task runners we use. These power our underlying build process and task plugin architecture.

On top of this architecture, we’ve highly customized tasks, profiles and systems which work well together and also provide developers with features like our generator system and Bower integration. Yeoman takes care of configuring your config files and setups Sass, CoffeeScript and Require.js out of the box. With additional features like wiring, an improved serve and init.

Developers are free to customize any configurations initialized by Yeoman.

How does Yeoman differ from tools like Brunch or Ember-cli?

We love tools like Brunch and Ember-cli and feel that they offer a great solution for developers wishing to scaffold with frameworks like Backbone.js and Ember. With the Yeoman generator system, as we’ve ported over the Rails Generator system to work with Node, we feel we have an interesting opportunity to take application scaffolding in a new direction - one where it’s easier for any developer to write scaffolds, support multiple testing frameworks, capture their own boilerplates and easily re-use them and so on.

How do I register or unregister a package on Bower?

Packages can be registered on Bower using the register command. e.g bower register myawesomepackagename git://github.com/youraccount/yourrepo. We recommend reading the Bower documentation before doing this to ensure that your repo includes the necessary files to supporting being installed.

Our goal is to facilitate both developers and the community with the tools needed to create rich web applications easily. With that goal in mind, we’ll be providing a great API (and docs) to our Generators system with examples of how to implement samples, but will rely on the community to create and maintain Generators for popular frameworks. This will allow us to focus on making Yeoman better without the distractions of maintaining a large number of Generators.

You can see the full list of officially supported generators on GitHub.

What license is Yeoman released under?

Yeoman is released under a BSD license.

What should I do before submitting an issue through GitHub?

Make sure you read the Submitting an issue guide.

npm appears to have installed Yeoman but yo still gives me “command not found”.

It’s likely your PATH does not account for global NPM modules just yet. Better documentation forthcoming but until then, read this comment and this thread.

This usually happens when you install Node through Homebrew, since it puts Node modules in a directory that’s not in your PATH.

From Homebrew:

==> Caveats
Homebrew installed npm.
We recommend prepending the following path to your PATH environment
variable to have npm-installed binaries picked up:
  /usr/local/share/npm/bin

Quick fix for advanced users is to put the following in your .bashrc file: export PATH=/usr/local/share/npm/bin:$PATH

For beginners brew uninstall node and download and install Node from their website.

I’m getting EMFILE, too many open files

EMFILE means you’ve reached the OS limit of concurrently open files. There aren’t much we can do about it, however you can increase the limit yourself.

Add ulimit -n [number of files] to your .bashrc/.zshrc file to increase the soft limit.

If you reach the OS hard limit, you can follow this StackOverflow answer to increase it.

What should I use for documenting my app

View the details within #152 ticket for recommended solutions for documentation generation

How can I disable Insight or Update Notifier?

You can use use a command line flag to disable them. Eg. yo webapp --no-insight

Insight: --no-insight Update Notifier: --no-update-notifier

You can also add yeoman_test as an environment variable with any value to permanently disable both.

Can I use livereloading with a custom webserver?

You bet! You can remove the connect task from your Gruntfile/Gulpfile and manually insert this snippet into your HTML:

<!-- livereload script -->
<script>document.write('<script src="http://'
 + (location.host || 'localhost').split(':')[0]
 + ':35729/livereload.js?snipver=1" type="text/javascript"><\/script>')
</script>

After that, simply run the serve task like you normally would and enjoy automatic page refreshes.

What should I do after cloning a web application generated with Yeoman?

Yeoman creates a .gitignore file for you. This file adds node_modules and bower_components folders to the blacklist. So, to run the serve task and download the Javascript dependencies listed in the bower.json file, you need to run both:

$ npm install
$ bower install

And check if these folders are created correctly.

What can I do if npm install -g yo fails on OS X with `sh: node: command not found?

Try

sudo chmod a+rx /usr/local/bin /usr/local/bin/node

Authenticate and run it again. Explanation: NPM runs the installation as nobody which may cause the installation to fail in a way that seems as if node was not found if the binary cannot be accessed.