websocket_toolkit 0.2.0

A WebSocket toolkit for Rust, enabling efficient real-time communication with flexible reconnection and message handling capabilities.
Documentation
FROM node:20

WORKDIR /app

COPY websocket_server.js .

# Install required dependencies (ws, cbor) and wscat globally
RUN npm install ws cbor && \
    npm install -g wscat

EXPOSE 9001

CMD ["node", "websocket_server.js"]
FROM node:20

WORKDIR /app

COPY websocket_server.js .

# Install required dependencies (ws, cbor) and wscat globally
RUN npm install ws cbor && \
    npm install -g wscat

EXPOSE 9001

CMD ["node", "websocket_server.js"]