What is boilerplate code?

前端 未结 14 735
终归单人心
终归单人心 2020-12-04 04:41

A coworker had never heard of this, and I couldn\'t provide a real definition. For me, it\'s always been an instance of \'I-know-it-when-I-see-it\'.

Bonus question,

14条回答
  •  时光说笑
    2020-12-04 05:03

    Boilerplate in software development can mean different things to different people but generally means the block of code that is used over and over again.

    In MEAN stack development, this term refers to code generation through use of template. It's easier than hand coding the entire application from scratch and it gives the code block consistency and fewer bugs as it is clean, tested and proven code and it's open source so it is constantly getting updated or fixed therefore it saves a lot of time as using framework or code generator. For more information about MEAN stack, click here.

提交回复
热议问题