What is bootstrapping?

后端 未结 13 1568
醉话见心
醉话见心 2020-11-29 14:09

I keep seeing \"bootstrapping\" mentioned in discussions of application development. It seems both widespread and important, but I\'ve yet to come across even a poor explan

13条回答
  •  离开以前
    2020-11-29 14:45

    In the context of application development, "bootstrapping" usually comes up when talking about modular and/or auto-updatable software.

    Rather than the user downloading the entire app, including features he does not need, and re-downloading and manually updating it whenever there is an update, the user only downloads and starts a small "bootstrap" executable, which in turn downloads and installs those parts of the application that the user needs. Additionally, the bootstrap component is able to look for updates and install them each time it is started.

提交回复
热议问题