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

# Can I use Atomico in browsers without ESM support?

Yes, but Atomico doesn't only depend on ESM, it also depends on the following api's that you will have to cover with Polyfill or some bundle tool.

1. ESM modules: [documentation ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules)- [caniuse](https://caniuse.com/es6-module)
2. CustomElements: [documentation](https://developer.mozilla.org/en-US/docs/Web/API/Window/customElements) - [caniuse](https://caniuse.com/mdn-api_window_customelements)
3. ShadowRoot: [documentation](https://developer.mozilla.org/en-US/docs/Web/API/ShadowRoot) - [caniuse](https://caniuse.com/mdn-api_shadowroot)
4. Map: [documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) - [caniuse](https://caniuse.com/mdn-html_elements_map)
5. Symbol and Symbol.for: [documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol/for) - [caniuse](https://caniuse.com/mdn-api_element_prepend)
6. append and prepend: [documentation ](https://developer.mozilla.org/en-US/docs/Web/API/Element/prepend)- [caniuse](https://caniuse.com/mdn-api_element_prepend)
7. Declarative Shadow DOM: **Only for using SSR with webcomponents that use shadowDOM**. [documentation](https://developer.chrome.com/es/articles/declarative-shadow-dom/)

Let's understand that today Atomico covers 94% of existing browsers without the need for polyfills or packers, the 6% not covered are usually browsers like ie11 or others.

If you depend on the uncovered segment of browsers you can use the following tools to support the apis necessary for Atomico to work.

[polyfill-fastly.io](https://polyfill-fastly.io/v3/polyfill.min.js?features=Element.prototype.append%2CSymbol%2CElement.prototype.prepend%2CMap) to associate Map, Symbol, append and prepend.

<https://github.com/Rich-Harris/shimport> to associate esm.

<https://github.com/ungap/custom-elements> to associate customElements apis.


---

# 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://atomico.gitbook.io/doc/guides/frequent-questions/page.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.
