Created
September 2, 2019 02:43
-
-
Save nasser/62c6f9e48c4f4e0e4ed3876987aade9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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