-
-
Notifications
You must be signed in to change notification settings - Fork 31.9k
doc: add docu for server.address() for pipe case #12907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,10 +99,13 @@ added: v0.1.90 | |
--> | ||
|
||
Returns the bound address, the address family name, and port of the server | ||
as reported by the operating system. | ||
as reported by the operating system if listening on an IP socket. | ||
Useful to find which port was assigned when getting an OS-assigned address. | ||
Returns an object with `port`, `family`, and `address` properties: | ||
`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }` | ||
`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`. | ||
|
||
For servers listening on a pipe or unix domain sockets the name is returned | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: Decide whether you want singular or plural and use it for both. Nit: Nit: comma between |
||
as string. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: |
||
|
||
Example: | ||
|
||
|
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Not sure why the period was added but I don't think it should be there. /cc @nodejs/documentation