Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Anthony c
20,907 PointsYeoman vs Express generator
Are they substitutes for each other? Or compliments? Or not related what so ever?
1 Answer

jared eiseman
29,023 PointsThey 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.