0.1.0 • Published 2 years ago

xmodem.ts v0.1.0

Weekly downloads
-
License
BSD-2-Clause
Repository
github
Last release
2 years ago

xmodem.ts

This is typescript fork of https://github.com/exsilium/xmodem.js with modified exports. All credits goes to Sten Feldman.

XMODEM is a simple file transfer protocol. This project implements the protocol in JavaScript. Please see the API docs for more details.

Installation

npm install xmodem.ts

Usage

Sending

import { Xmodem } from 'xmodem.ts'
xmodem.send(socket, buffer);

Receiving

import { Xmodem } from 'xmodem.ts'
xmodem.receive(socket, receiveFile);