# hunt **Repository Path**: rxtech/hunt ## Basic Information - **Project Name**: hunt - **Description**: Hunt is a high-level dlang Web framework that encourages rapid development and clean, pragmatic design. It lets you build high-performance Web applications quickly and easily. - **Primary Language**: D - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2017-05-05 - **Last Updated**: 2022-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Hunt framework Hunt is a high-level [dlang](http://dlang.org/) Web framework that encourages rapid development and clean, pragmatic design. It lets you build high-performance Web applications quickly and easily. ## Create project ```bash git clone https://github.com/putaolabs/hunt-skeleton.git myproject cd myproject dub run ``` Open the URL with the browser: ```html http://localhost:8080/ ``` ## Router config config/routes ```conf # # [GET,POST,PUT...] path controller.action # GET / index.index GET /users user.list POST /user/login user.login GET /user/show user.info ```