
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.
launchpadcore
Advanced tools
Simple way to control your Novation Launchpad.
Note: Only tested with Launchpad X for now.
// NPM
npm install launchpadcore
// Yarn
yarn add launchpadcore
Launchpad Core offers a driver system to adapt to the different existing models of Novation Launchpad.
| Name | Status |
|---|---|
| Launchpad X | Available |
| Launchpad MK2 | Partially available |
| Launchpad Pro MK3 | Work in progress... |
| Launchpad Mini MK3 | Available |
Here is a typical example of what can be done with this module.
import { LaunchpadCore } from "launchpadcore"
const App = new LaunchpadCore("LaunchpadX");
App.on("onEnabled", (instance, driver) => {
instance.out.send(driver.textScrolling(15, "Welcome!"))
})
App.on("onMidiIn", (data) => {
console.log(data)
})
App.on("onDisabled", () => {
console.log("Shutdown...")
})
| Name | Description |
|---|---|
onConnected | When connected to Launchpad |
onDisabled | When disabled (exit the program) |
onMidiIn | When new MIDI message received |
Usable on a MidiService object. Find more at: https://jazz-soft.net/doc/JZZ/.
| Name | Description |
|---|---|
out.send() | Send whatever you want |
out.noteOn() | Send noteOn |
out.noteOff() | Send noteOff |
Usable on a Driver object.
| Name | Description | Driver |
|---|---|---|
setLayout() | Set your LaunchPad layout | LaunchpadX, Launchpad Mini MK3, Launchpad MK2 |
textScrolling() | Scroll a text along your launchpad pads | LaunchpadX, Launchpad Mini MK3, Launchpad MK2 |
programmerToggle() | Toggle to programmer mode | LaunchpadX, Launchpad Mini MK3 |
dawClear() | Clear DAW layouts | LaunchpadX, Launchpad Mini MK3 |
ledLightning() | Set pads colors by SysEx | LaunchpadX, Launchpad Mini MK3 |
ledBrightness() | Set brightness of your launchpad | LaunchpadX, Launchpad Mini MK3 |
ledSleep() | Disable LED of your launchpad | LaunchpadX, Launchpad Mini MK3 |
FAQs
Simple way to control your Novation Launchpad.
We found that launchpadcore 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.