Mr. Smith – An Open-Source Framework for Building Project Scaffolds

18 pointsposted 8 months ago
by arthurpolimeni

7 Comments

Dachande663

8 months ago

This reminds me of Yeoman in a way. Never thought I’d reminisce about the days of backbone and gulp.

nikolay

8 months ago

I will investigate it, but scaffolding to me is dangerous as it generates a lot of code that later cannot be as easily maintained/updated as it's been scaffolded. I look for a scaffolder/boilerplate that comes with updates when the base evolves!

relistan

8 months ago

Done properly and to the correct extent, scaffolding generates more maintainable code by ensuring that everything in all the codebases is structured in the same basic way, uses the same base libraries, has the same build steps, etc. Done over the top, it could include things most projects don’t need. Like anything, it requires using good judgment.

arthurpolimeni

8 months ago

The idea here is not to dictate coding standards but rather to provide a tool that allows you to create your own scaffolds to use internally with your team. This helps simplify writing repetitive code and ensures that everyone is following the same coding standards.