Vu Bao Nhu
Vu Bao Nhu
Hi @lbassin @x-Raz Because Native app is amazing! So, i would like to add this feature but it seems a little difficult for automatically building/packing via `npm scripts`. Follow this...
For large application that we have many components and modules. So I hope this boilerplate has an option to enable code splitting and lazy loading. Here is a guide: https://toddmotto.com/lazy-loading-angular-code-splitting-webpack
The CLI currently does not work. The list of cli tools need to update: * [ ] Tokenizer: `vntk tok ` - convert lines of text to lines of tokens...
Wanted the list of cli tools: * [x] `mvc`: Assembling all into complete ship (**default**), [document](https://kites.nodejs.vn/documentation) * [x] `basic`: Template for building from scratch * [x] `apidoc`: Template for API...
The **HttpContext** property allow us to access the current request, response and user with ease. * Access `HttpContext` in controllers derived from `BaseHttpController` or `@Inject` decorator.
List action results. * OkResult * OkNegotiatedContentResult * RedirectResult * ResponseMessageResult * StatusCodeResult * BadRequestErrorMessageResult * BadRequestResult * ConflictResult * CreatedNegotiatedContentResult * ExceptionResult * InternalServerError * NotFoundResult * JsonResult Example:...
* Allow a new controller definition extends from BaseApiController Example: ```js @Controller("/") class ExampleController extends BaseApiController { @Get("/") public async info() { return this.ok("foo"); } ```
When the application grows, it is hard to manually test a behavior of each API endpoint. The end-to-end tests help us to make sure that everything is working correctly and...
* add new api `close` to close kites application * may be use combine `events` with `rxjs` Example: ```js // close application await kites.close(); ```
Build admin panel as an extension of kites. #kites-admin First implement will use React? Extensions have own their `controllers` and `views` for micro frontend. Example: ```ts Extension({ prefix: 'api/v1', //...