
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
git clone
npm install
var np = require('notePlayer')
<script type="text/javascript" src="https://cdn.rawgit.com/laopunk/notePlayer/master/lib/notePlayer.min.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")
n.play(function(){
console.log("end play")
})
Setters:
setAudioContext(audioContext)setDestinationNode(node)setDuration(duration)setVolume(volume)FAQs
WebAudio musical audio note player
The npm package noteplayer receives a total of 12 weekly downloads. As such, noteplayer popularity was classified as not popular.
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.