
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
korg-nano-kontrol2
Advanced tools
A Node.js/Browser library for KORG nanoKONTROL2, written in Typescript. Supports both CommonJS and ES Modules.
Forked from korg-nano-kontrol v0.2.9 and updated.
require) and ESM (import)% npm install korg-nano-kontrol2
find nanoKONTROL2
import { korgNanoKontrol2 } from 'korg-nano-kontrol2';
import type { KorgDevice } from 'korg-nano-kontrol2';
korgNanoKontrol2.connect()
.then(function(device: KorgDevice){
console.log(`connected! + ${device.deviceName}`);
// do something
})
.catch(function (err: unknown) {
console.error(err);
});
// register specific slider/knob/button events
device.on('slider:0', function(value: number){
console.log(`slider:0 >>> ${value}`);
});
device.on('knob:1', function(value: number){
console.log(`knob:1 >>> ${value}`);
});
device.on('button:play', function(value: boolean){
console.log(`button:play >>> ${value}`);
});
// catch all slider/knob/button events
device.on('slider:*', function (this: KorgDevice, value: number) {
console.log(`${String(this.event)} => ${value}`);
});
device.on('knob:*', function (this: KorgDevice, value: number) {
console.log(`${String(this.event)} => ${value}`);
});
device.on('button:**', function (this: KorgDevice, value: boolean) {
console.log(`${String(this.event)} => ${value}`);
});
device.close();
enable debug npm
for Node.js
% export DEBUG="korg-nano-kontrol2:*"
for Browser
localStorage.debug = "korg-nano-kontrol2:*";
% npm run build
% npm run buildSample
% npm run watch
% npm install
% npm test
FAQs
Node.js/Browser library for KORG nanoKONTROL and nanoKONTROL2
We found that korg-nano-kontrol2 demonstrated a healthy version release cadence and project activity because the last version was released less than 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.