---
pagination_prev: getting-started/index
pagination_next: getting-started/example
sidebar_position: 7
sidebar_custom_props:
summary: Download and Import ECMAScript Modules
---
import current from '/version.js';
# Bun
Each standalone release script is available at .
After downloading the script, it can be directly imported:
```js
import * as XLSX from './xlsx.mjs';
import * as fs from 'fs';
XLSX.set_fs(fs);
```
:::caution Bun support is considered experimental.
Great open source software grows with user tests and reports. Any issues should
be reported to the Bun project for further diagnosis.
:::
## Encoding support
If Encoding support is required, `cpexcel.full.mjs` must be manually imported.
```ts
/* load the codepage support library for extended support with older formats */
import * as cptable from './cpexcel.full.mjs';
XLSX.set_cptable(cptable);
```