# node-uuencode **Repository Path**: Talbot3/node-uuencode ## Basic Information - **Project Name**: node-uuencode - **Description**: Node.js implementation of the Unix program uuencode. - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-02-10 - **Last Updated**: 2022-02-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README uuencode ======== Node.js implementation of the Unix program uuencode. More information on the uuencode encoding can be found [here](http://en.wikipedia.org/wiki/Uuencoding). Installation -------- npm install -g uuencode Examples -------- The following examples show you how to use uuencode. ```javascript var uuencode = require('uuencode'); // encode something var encoded = uuencode.encode('Unix-to-Unix encoding'); // '556YI>"UT;RU5;FEX(&5N8V]D:6YG\n' // decode something var decoded = uuencode.decode('556YI>"UT;RU5;FEX(&5N8V]D:6YG\n'); // 'Unix-to-Unix encoding' ``` Running Tests ---- $ npm test Note the uuencode utility must be installed for all tests to pass.