Skip to content

Instantly share code, notes, and snippets.

@nasser
Created September 2, 2019 02:43
Show Gist options
  • Save nasser/62c6f9e48c4f4e0e4ed3876987aade9e to your computer and use it in GitHub Desktop.
Save nasser/62c6f9e48c4f4e0e4ed3876987aade9e to your computer and use it in GitHub Desktop.
(def Client (.-Client (js/require "node-osc"))) ;; var Client = require("node-osc").Client;
(def client (Client. "127.0.0.1" 8000)) ;; var client = new Client("127.0.0.1", 8000);
(.send client "/foo/bar" 99) ;; client.send("/foo/bar", 99);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment