
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.
noteplayer
Advanced tools
You may import the code into an existing node.js project or import it directly into your HTML code
# local install to your project
npm install --save-dev noteplayer
// import module into your js code
var np = require('noteplayer')
<!-- minified version, not human friendly, 55kb-->
<script type="text/javascript" src="notePlayer.min.js"></script>
<!-- uncompressed version, human friendly, 416kb -->
<script type="text/javascript" src="notePlayer.js"></script>
The module is instanciated in the object np, which you can use right away
np.buildFromName("C4").play()
There are several ways to instanciate the class:
buildFromFrequency(freq,[audioContext])Builds a notePlayer from a specific frequence. audioContext is created if not provided.
n = np.buildFromFrequency(440); //will return a A4
n = np.buildFromFrequency(439); //will return a A4
n = np.buildFromFrequency(460); //will return a A#4
buildFromKeyNb(noteKeyNb, [audioContext])Builds a notePlayer from a specific piano key number audioContext is created if not provided
n = np.buildFromKeyNb(49); //will return a A4
buildFromName(noteName, [audioContext])
Builds a notePlayer from a specific musical note name audioContext is created if not provided
n = np.buildFromName("A4") //will return a A4
play([callback])
Plays the note
n = np.buildFromName("A4")
o = n.play(function(){
console.log("end play")
})
The note will be played for a given duration (random by default, or using setDuration() ). The function however returns the oscillator itself, which you can use to call for stop() should you want to stop the sound at an earlier time (courtesy of Jag)
setAudioContext(audioContext)setDestinationNode(node)setDuration(duration)setVolume(volume)setVerbose(bool)setAttack(duration)setRelease(duration)FAQs
WebAudio musical audio note player
We found that noteplayer 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.