You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# nix-socket
1
+
# node-unix-socket
2
2
3
-
`nix-socket` allows you to use some nonblocking sockets that are not supported by Node.js native modules, including:
3
+
`node-unix-socket` allows you to use some nonblocking sockets that are not supported by Node.js native modules, including:
4
4
5
5
- Using `SO_REUSEPORT` enabled TCP [net.Server](https://nodejs.org/dist/latest-v16.x/docs/api/net.html#class-netserver)
6
6
- unix seqpacket(`SOCK_SEQPACKET`) sockets
7
7
- unix datagram(`SOCK_DGRAM`) sockets
8
8
9
-
`nix-socket` is a [napi-rs](https://napi.rs/) based [Node.js addons](https://nodejs.org/docs/latest-v16.x/api/addons.html). This lib uses [libuv](https://libuv.org/) inside Node.js so that it won't introduce any other asynchronous runtimes.
9
+
`node-unix-socket` is a [napi-rs](https://napi.rs/) based [Node.js addons](https://nodejs.org/docs/latest-v16.x/api/addons.html). This lib uses [libuv](https://libuv.org/) inside Node.js so that it won't introduce any other asynchronous runtimes.
10
10
11
11
## API Documents
12
12
@@ -27,7 +27,7 @@ Note that `SO_REUSEPORT` might behave much differently across operating systems.
Copy file name to clipboardExpand all lines: docs/README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
-
nix-socket / [Exports](modules.md)
1
+
node-unix-socket / [Exports](modules.md)
2
2
3
-
# nix-socket
3
+
# node-unix-socket
4
4
5
-
`nix-socket` allows you to use some nonblocking sockets that are not supported by Node.js native modules, including:
5
+
`node-unix-socket` allows you to use some nonblocking sockets that are not supported by Node.js native modules, including:
6
6
7
7
- Using `SO_REUSEPORT` enabled TCP [net.Server](https://nodejs.org/dist/latest-v16.x/docs/api/net.html#class-netserver)
8
8
- unix seqpacket(`SOCK_SEQPACKET`) sockets
9
9
- unix datagram(`SOCK_DGRAM`) sockets
10
10
11
-
`nix-socket` is a [napi-rs](https://napi.rs/) based [Node.js addons](https://nodejs.org/docs/latest-v16.x/api/addons.html). This lib uses [libuv](https://libuv.org/) inside Node.js so that it won't introduce any other asynchronous runtimes.
11
+
`node-unix-socket` is a [napi-rs](https://napi.rs/) based [Node.js addons](https://nodejs.org/docs/latest-v16.x/api/addons.html). This lib uses [libuv](https://libuv.org/) inside Node.js so that it won't introduce any other asynchronous runtimes.
12
12
13
13
## API Documents
14
14
@@ -29,7 +29,7 @@ Note that `SO_REUSEPORT` might behave much differently across operating systems.
0 commit comments