Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Express Basics (2015) Doing more with Express Using β€œexpress-generator” to Start an Express Project

Anthony c
Anthony c
20,907 Points

Yeoman vs Express generator

Are they substitutes for each other? Or compliments? Or not related what so ever?

1 Answer

jared eiseman
jared eiseman
29,023 Points

They are pretty closely related.

The express generator is something developed and maintained by the same folks that made the Express boilerplate. This is a very simple version of an Express server.

Yeoman (yo) generators are generator built by other people. Often times these include Express within them, for instance in the cases of MEAN stack generators.

One way to look at it is they both do the same thing, in that they abstract away a lot of the tedious tasks of starting a project. The difference is the point in which they leave you to start customizing the code.