https://github.com/idleberg/bun-plugin-coffeescript
Use CoffeeScript with Bun, old meets new
https://github.com/idleberg/bun-plugin-coffeescript
bun-plugin coffeescript cson
Last synced: 11 days ago
JSON representation
Use CoffeeScript with Bun, old meets new
- Host: GitHub
- URL: https://github.com/idleberg/bun-plugin-coffeescript
- Owner: idleberg
- License: mit
- Created: 2025-11-20T20:28:10.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-12-11T09:29:54.000Z (6 months ago)
- Last Synced: 2026-02-17T02:38:07.356Z (4 months ago)
- Topics: bun-plugin, coffeescript, cson
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/bun-plugin-coffeescript
- Size: 150 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bun-plugin-coffeescript
> Use CoffeeScript with Bun, old meets new.
[](https://github.com/idleberg/bun-plugin-coffeescript/blob/main/LICENSE)
[](https://www.npmjs.org/package/bun-plugin-coffeescript)

This plugin provides support for both CoffeeScript and CSON to your Bun projects. It is roughly modelled after the [esbuild-coffeescript](https://www.npmjs.com/package/esbuild-coffeescript) and is still in its infancy. Your feedback or contribution is welcome!
## Installation đŋ
```shell
bun install bun-plugin-coffeescript
```
## Usage đ
```typescript
import CoffeeScript from "bun-plugin-coffeescript";
Bun.build({
entrypoints: ["app.coffee"],
outdir: "dist",
target: "browser",
plugins: [
CoffeeScript(/* compiler options */),
],
});
```
## License Šī¸
This work is licensed under [The MIT License](LICENSE).