
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
convert morse code characters into timings
var norse = require('norse'),
morse = require('morse-stream'),
flashlight = require('fake-light-flashing-module'),
fs = require('fs')
fs.createReadStream('goosebumps.txt')
.pipe(morse())
.pipe(norse(100)) // optional time unit parameter, defaults to 500
.pipe(flashlight()) // pretend this flashes a light based on timing
var norse = require('norse'),
concat = require('concat-stream'),
fs = require('fs')
fs.createReadStream('sos-in-morse-code.txt')
.pipe(norse(1))
.pipe(concat(display_timings))
function display_timings(timings) {
console.log(timings)
// [1, 1, 1, 1, 1, 3, 3, 1, 3, 1, 3, 3, 1, 1, 1, 1, 1, 7]
}
emits arrays for timing as [time_on, time_off]
accepts a stream of words, with letters separated by space. dots should be
represented with '.' and dashes by either '-' or '_'. For example, SOS
could be represented by '... --- ...'.
as per Morse code wikipedia entry dots and times between elements are one time unit in length. dashes and times between letters are three time units in length. time between words is seven time units in length.
MIT
FAQs
convert morse to timing information
We found that norse demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.