0.1.6 • Published 10 months ago
celestial-cipher-codec v0.1.6
Celestial Cipher Codec
A lightweight JavaScript library for encoding and decoding messages using a simple celestial-themed cipher.
Installation
npm install celestial-cipher-codec
Usage
Import the celestial-cipher-codec
to encode and decode messages:
const { encode, decode } = require('celestial-cipher-codec');
const originalMessage = "Hello, Universe!";
const encodedMessage = encode(originalMessage);
console.log(`Encoded: ${encodedMessage}`);
const decodedMessage = decode(encodedMessage);
console.log(`Decoded: ${decodedMessage}`);
Ensure you have Node.js installed in your environment since this library uses Node's crypto
module for encoding and decoding operations.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
This project is licensed under the MIT License.