morsify
Morse code encoder and decoder with no dependencies supports Latin, Cyrillic, Greek, Hebrew,
Arabic, Persian, Japanese, Korean, Thai, and Unicode (Chinese and the others) characters with audio generation functionality using the Web Audio API.
Live demo can be found here: https://morsify.net
Installation
npm
$ npm install morsify --save
yarn
$ yarn add morsify
Usage
var morsify = require('morsify');
var encoded = morsify.encode('SOS');
var decoded = morsify.decode('.../---/...');
var characters = morsify.characters();
var audio = morsify.audio('SOS');
audio.play();
audio.stop();
Or alternatively, you can also use the library directly with including the source file.
<script src="https://rawgit.com/ozdemirburak/morsify/master/dist/morsify.min.js"></script>
<script>
var encoded = morsify.encode('SOS');
var decoded = morsify.decode('.../---/...');
var characters = morsify.characters();
var audio = morsify.audio('SOS');
var oscillator = audio.oscillator;
var context = audio.context;
var gainNode = audio.gainNode;
audio.play();
audio.stop();
</script>
Options and Localization
You can customize the dash, dot or space characters and specify the alphabet with the priority option for
an accurate encoding and decoding.
What priority option does is, gives direction to the plugin to start to searching for the given character set first.
Set the priority option according to the list below.
- 1 => ASCII (Default)
- 2 => Numbers
- 3 => Punctuation
- 4 => Latin Extended (Turkish, Polish etc.)
- 5 => Cyrillic
- 6 => Greek
- 7 => Hebrew
- 8 => Arabic
- 9 => Persian
- 10 => Japanese
- 11 => Korean
- 12 => Thai
- 13 => Unicode (Chinese and the others)
var cyrillic = morsify.encode('Ленинград', { priority: 5 });
var greek = morsify.decode('.../.-/--./.-/.--./.--', { priority: 6 });
var hebrew = morsify.decode('––– –... ––– –. ––. .. .–.. –––', { dash: '–', dot: '.', space: ' ', priority: 7 });
var chinese = morsify.encode('你好', { priority: 13 });
var characters = morsify.characters({ dash: '–', dot: '•' });
var arabicAudio = morsify.audio('البُراق', {
unit: 0.1,
oscillator: {
type: 'sine',
frequency: 500,
onended: function () {
console.log('ended');
}
}
});
var oscillator = arabicAudio.oscillator;
var context = arabicAudio.context;
var gainNode = audio.gainNode;
arabicAudio.play();
arabicAudio.stop();
Contributing and Known Issues
Contributions are welcome.
Generating Minified Files
Install node and npm following one of the techniques explained within
this link and run the commands below.
$ npm install --global gulp-cli
$ npm install
$ gulp
License
The MIT License (MIT). Please see License File for more information.