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 trialJavier Alvarado
16,060 PointsWhat's the difference between build and run?
What's the difference between build and run? When would I use one over the other?
1 Answer
James Simshaw
28,738 PointsWhen you select build, it just compiles everything together. However, when you select run, it does the build process, but it also executes your project.
Javier Alvarado
16,060 PointsJavier Alvarado
16,060 PointsOkay. So when exactly would I use build? It seems to me that I would always want to run the project, but it sounds like there are situations where it's better to just build it.
James Simshaw
28,738 PointsJames Simshaw
28,738 PointsFor most of the time, you would never need to choose build since you're most likely testing your app.
The biggest scenario I can think of that you'd want to use build is if your app takes a long time to build so you start the build then come back later to run it.