> For the complete documentation index, see [llms.txt](https://neomatrixcode.gitbook.io/merly/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://neomatrixcode.gitbook.io/merly/guide.md).

# Guide

- [Routing](https://neomatrixcode.gitbook.io/merly/guide/routing.md): Routing refers to the way an application's endpoints are defined.
- [Start](https://neomatrixcode.gitbook.io/merly/guide/start.md): The start function allows to take off the files in a specific IP address and port.
- [Headers](https://neomatrixcode.gitbook.io/merly/guide/headers.md): It is possible to configure the headers returned by the framework
- [CORS](https://neomatrixcode.gitbook.io/merly/guide/cors.md)
- [Http methods available](https://neomatrixcode.gitbook.io/merly/guide/http-methods-available.md)
- [Statics files](https://neomatrixcode.gitbook.io/merly/guide/statics-files.md): webserverfiles allows serving static files like images, CSS, and JavaScript.
- [Custom 404 Handler](https://neomatrixcode.gitbook.io/merly/guide/custom-404-handler.md): It is possible to return a personalized message when a route cannot be found.
- [Body parser](https://neomatrixcode.gitbook.io/merly/guide/bodyparser.md): The data sent sent in the body of a request of a client, can be processed previously.
- [Middleware](https://neomatrixcode.gitbook.io/merly/guide/middleware.md): It is possible to execute functions before or after the function associated with an endpoint, this in order to reprocess certain data or carry out previous validations.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://neomatrixcode.gitbook.io/merly/guide.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
