Package

io.scalajs.nodejs

net

Permalink

package net

net package object

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. net
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait Address extends Object

    Permalink

    Server IP Address

    Server IP Address

    Annotations
    @RawJSType() @native()
  2. class ConnectOptions extends Object

    Permalink

    Connect Options

    Connect Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  3. class ListenerOptions extends Object

    Permalink

    Listener Options

    Listener Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  4. trait Net extends Object with IEventEmitter

    Permalink

    net - The net module provides you with an asynchronous network wrapper.

    net - The net module provides you with an asynchronous network wrapper. It contains functions for creating both servers and clients (called streams).

    Annotations
    @RawJSType() @native()
    See also

    https://nodejs.org/api/net.html

  5. class Server extends Object with IEventEmitter

    Permalink

    net.Server - This class is used to create a TCP or local server.

    net.Server - This class is used to create a TCP or local server.

    Annotations
    @RawJSType() @native() @JSImport( "net" , "Server" )
    See also

    https://nodejs.org/api/net.html#net_class_net_server

  6. implicit final class ServerEvents extends AnyVal

    Permalink

    net.Server Events

  7. class ServerOptions extends Object

    Permalink

    Server Options

    Server Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  8. class Socket extends Object with IDuplex

    Permalink

    net.Socket - This object is an abstraction of a TCP or local socket.

    net.Socket - This object is an abstraction of a TCP or local socket. net.Socket instances implement a duplex Stream interface. They can be created by the user and used as a client (with connect()) or they can be created by Node.js and passed to the user through the 'connection' event of a server.

    Annotations
    @RawJSType() @native() @JSImport( "net" , "Socket" )
  9. implicit final class SocketExtensions extends AnyVal

    Permalink

    net.Socket Extensions

  10. class SocketOptions extends Object

    Permalink

    Socket Options

    Socket Options

    Annotations
    @RawJSType() @ScalaJSDefined()

Value Members

  1. object Net extends Object with Net

    Permalink

    Net Singleton

    Net Singleton

    Annotations
    @native() @JSImport( "net" , JSImport.Namespace )
  2. object Server

    Permalink

    Server Companion

  3. object Socket

    Permalink

    Socket Singleton

Inherited from AnyRef

Inherited from Any

Ungrouped