celestial-cipher-codec

0.1.6 • Public • Published

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.

Package Sidebar

Install

npm i celestial-cipher-codec

Weekly Downloads

0

Version

0.1.6

License

MIT

Unpacked Size

3.39 kB

Total Files

5

Last publish

Collaborators

  • eddygervasio