0.1.6 • Published 10 days ago

celestial-cipher-codec v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

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.

0.1.3

10 days ago

0.1.6

10 days ago

0.1.2

1 month ago

0.1.1

1 month ago