Skip to content

Commit

Permalink
fix: use more node: protocol imports (#1428)
Browse files Browse the repository at this point in the history
* fix: use node: protocol

* use node: protocol in readme
  • Loading branch information
dnalborczyk committed Dec 28, 2021
1 parent f674875 commit 41f53b9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -295,9 +295,9 @@ Cookies are not stored by default. However, cookies can be extracted and passed
The "Node.js way" is to use streams when possible. You can pipe `res.body` to another stream. This example uses [stream.pipeline](https://nodejs.org/api/stream.html#stream_stream_pipeline_streams_callback) to attach stream error handlers and wait for the download to complete.

```js
import {createWriteStream} from 'fs';
import {pipeline} from 'stream';
import {promisify} from 'util'
import {createWriteStream} from 'node:fs';
import {pipeline} from 'node:stream';
import {promisify} from 'node:util'
import fetch from 'node-fetch';

const streamPipeline = promisify(pipeline);
Expand Down Expand Up @@ -517,8 +517,8 @@ See [`http.Agent`](https://nodejs.org/api/http.html#http_new_agent_options) for
In addition, the `agent` option accepts a function that returns `http`(s)`.Agent` instance given current [URL](https://nodejs.org/api/url.html), this is useful during a redirection chain across HTTP and HTTPS protocol.

```js
import http from 'http';
import https from 'https';
import http from 'node:http';
import https from 'node:https';

const httpAgent = new http.Agent({
keepAlive: true
Expand Down
2 changes: 1 addition & 1 deletion src/utils/referrer.js
@@ -1,4 +1,4 @@
import {isIP} from 'net';
import {isIP} from 'node:net';

/**
* @external URL
Expand Down
6 changes: 3 additions & 3 deletions test/utils/server.js
@@ -1,6 +1,6 @@
import http from 'http';
import zlib from 'zlib';
import {once} from 'events';
import http from 'node:http';
import zlib from 'node:zlib';
import {once} from 'node:events';
import Busboy from 'busboy';

export default class TestServer {
Expand Down

0 comments on commit 41f53b9

Please sign in to comment.