--- title: Database description: Get started with the database. url: /docs/extension/database --- # Database To enable communication between your WXT extension and the server in a production environment, the web application with Hono API must be deployed first. As browser extensions use only client-side code, **there's no way to interact with the database directly**. Also, you should avoid any workarounds to interact with the database directly, because it can lead to leaking your database credentials and other security issues. ## Recommended approach You can safely use the [API](/docs/extension/api/overview) and invoke procedures which will run queries on the database. To do this you need to set up the database on the [web, server side](/docs/web/database/overview) and then use the [API client](/docs/extension/api/client) to interact with it. Learn more about its configuration in the web part of the docs, especially in the following sections: