summaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/tcp_echo.md8
-rw-r--r--docs/examples/unix_cat.md7
2 files changed, 9 insertions, 6 deletions
diff --git a/docs/examples/tcp_echo.md b/docs/examples/tcp_echo.md
index a66fe05ed..f016b8bd8 100644
--- a/docs/examples/tcp_echo.md
+++ b/docs/examples/tcp_echo.md
@@ -4,8 +4,9 @@
- Listening for TCP port connections with
[Deno.listen](https://doc.deno.land/builtin/stable#Deno.listen).
-- Use [Deno.copy](https://doc.deno.land/builtin/stable#Deno.copy) to take
- inbound data and redirect it to be outbound data.
+- Use
+ [copy](https://doc.deno.land/https/deno.land/std@$STD_VERSION/io/util.ts#copy)
+ to take inbound data and redirect it to be outbound data.
## Example
@@ -16,10 +17,11 @@ returns to the client anything it sends.
/**
* echo_server.ts
*/
+import { copy } from "https://deno.land/std@$STD_VERSION/io/util.ts";
const listener = Deno.listen({ port: 8080 });
console.log("listening on 0.0.0.0:8080");
for await (const conn of listener) {
- Deno.copy(conn, conn).finally(() => conn.close());
+ copy(conn, conn).finally(() => conn.close());
}
```
diff --git a/docs/examples/unix_cat.md b/docs/examples/unix_cat.md
index fc09d4e27..0ce28d718 100644
--- a/docs/examples/unix_cat.md
+++ b/docs/examples/unix_cat.md
@@ -7,8 +7,8 @@
command line arguments.
- [Deno.open](https://doc.deno.land/builtin/stable#Deno.open) is used to get a
handle to a file.
-- [Deno.copy](https://doc.deno.land/builtin/stable#Deno.copy) is used to
- transfer data from the file to the output stream.
+- [copy](https://doc.deno.land/https/deno.land/std@$STD_VERSION/io/util.ts#copy)
+ is used to transfer data from the file to the output stream.
- Files should be closed when you are finished with them
- Modules can be run directly from remote URLs.
@@ -21,9 +21,10 @@ is opened, and printed to stdout (e.g. the console).
/**
* cat.ts
*/
+import { copy } from "https://deno.land/std@$STD_VERSION/io/util.ts";
for (const filename of Deno.args) {
const file = await Deno.open(filename);
- await Deno.copy(file, Deno.stdout);
+ await copy(file, Deno.stdout);
file.close();
}
```