0

I am a beginner in Nancy application develpment. Can any one explain about what is the role of Bootstrapper in a Nancy application.

Thanks.

Raj
  • 263
  • 1
  • 2
  • 14

1 Answers1

0

I think the Nancy documentation explains it well.

the bootstrapper is for application wide configuration. That includes setting up your DI container, adding hanlders to Before, After and Error pipelines, setting up any special conventions you may have and so on. The modules are discovered automatically by Nancy on startup. If you don't have any particular setup, you don't need a bootstrapper.

Christian Horsdal
  • 4,914
  • 23
  • 24
  • thanks for the link, it sounds like, its role is to linking the modules for execution, Can you explain in your words if am missing any thing please. – Raj Nov 19 '14 at 11:46