24 lines
498 B
Plaintext
24 lines
498 B
Plaintext
---
|
|
title: Write to stdout
|
|
sidebarTitle: Write to stdout
|
|
mode: center
|
|
---
|
|
|
|
The `console.log` function writes to `stdout` and appends a line break to the printed data.
|
|
|
|
```ts
|
|
console.log("Lorem ipsum");
|
|
```
|
|
|
|
---
|
|
|
|
Bun also exposes `stdout` as a `BunFile` with the `Bun.stdout` property. Pass it as the destination to [`Bun.write()`](/runtime/file-io#writing-files-bun-write).
|
|
|
|
```ts
|
|
await Bun.write(Bun.stdout, "Lorem ipsum");
|
|
```
|
|
|
|
---
|
|
|
|
See [`Bun.write()`](/runtime/file-io#writing-files-bun-write).
|