Whispering Code – Getting Started

Welcome, Silent Coder

You've stumbled upon Whispering Code, the library that talks to you in hushed tones. No loud errors, just gentle nudges.

“listen… your variables have feelings.”

1. Install the Quiet Package

Open your terminal and whisper the following command:

npm install whispering-code --save

Or, if you prefer the ancient art of yarn:

yarn add whispering-code

2. Your First Whisper

Create a file hello.js and let the code speak:

import { whisper } from 'whispering-code';

whisper('Hello, world!'); // → shhh… “Hello, world!”

Run it with node hello.js and watch the console breathe.

3. Configuring the Soft Voice

By default the library uses a low volume. You can adjust it with a simple JSON file:

{
  "volume": "soft",   // soft | medium | loud
  "tone": "mellow"    // mellow | bright | echo
}

Save it as whisper.config.json in your project root.

4. Where to Go Next?