5b0b3c9a8e
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Florian Lefebvre <contact@florian-lefebvre.dev>
20 lines
389 B
Markdown
20 lines
389 B
Markdown
---
|
|
'@astrojs/cloudflare': minor
|
|
---
|
|
|
|
Add support for the following Node.js Runtime APIs, which are availabe in [Cloudflare](https://developers.cloudflare.com/workers/runtime-apis/nodejs) using the `node:` syntax.
|
|
|
|
- assert
|
|
- AsyncLocalStorage
|
|
- Buffer
|
|
- Diagnostics Channel
|
|
- EventEmitter
|
|
- path
|
|
- process
|
|
- Streams
|
|
- StringDecoder
|
|
- util
|
|
|
|
```js
|
|
import { Buffer } from 'node:buffer';
|
|
```
|