A comprehensive Morse Code (CW) library, brought to you by Master CW.
Install the package via npm
or yarn
:
$ npm install cw
import cw from "cw";
console.log(cw.codes["C"]); // "-.-."
cw.play("hello world");
const cw = require("cw");
console.log(cw.codes["C"]); // "-.-."
You can either build the browser bundle yourself with:
$ npm install
$ npm run build
Which will create dist/cw.js
and dist/cw.min.js
. Or you can use it from a CDN:
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cw.min.js"></script>
or just use latest
:
<script src="https://cdn.jsdelivr.net/npm/cw@latest/dist/cw.min.js"></script>
The legacy CDN is still available for backwards compatability but will be deprecated soon:
<script src="https://cwjs.mastercw.com/cw.min.js"></script>
Once the script is loaded you can call the cw.play()
function:
<script>
cw.play("hello world");
</script>
Options can be passed to customize the played sequence:
cw.play("abcd", {
tone: 800, // tone frequency in Hz
wpm: 20, // character speed in words per minute (WPM)
fwpm: 10, // farnsworth speed in words per minute (WPM)
});
In cases of multiple plays, it is recommended to create a global audioContext
object:
// Initialize audio context once
let actx = cw.initAudioContext({ tone: 600 }); // tone is passed here
// Reuse the audio context for multiple plays
cw.play("abcd", { actx, wpm: 10 });
cw.play("efgh", { actx, wpm: 20 });
cw.play("ijkl", { actx, wpm: 30 });
For more examples see the examples/ directory.
$ npm test
ISC