Git Product home page Git Product logo

supercolliderjs's Introduction

supercollider.js

npm version Build Status Dependency Status devDependency Status

Node.js tools for working with the SuperCollider language and synthesis server.

SuperCollider is an environment and programming language for real time audio synthesis and algorithmic composition. It provides an interpreted object-oriented language which functions as a network client to a state of the art, realtime sound synthesis server.

This library provides tools for working with:

  • scsynth (the synthesis server)
  • sclang (supercollider language interpreter)

Documentation

http://supercolliderjs.readthedocs.org/en/latest/

Features

  • Spawn headless SuperCollider language interpreters (sclang)
  • Execute SuperCollider code from node js and get results or errors returned as JSON
  • Spawn SuperCollider synthesis servers (scsynth)
  • Send and receive OSC messages to scsynth
  • Call API endpoints in SuperCollider from a browser using JavaScript and a websocket/OSC bridge
  • Communicate with sclang running in SuperCollider.app (SC IDE) using OSC

Example

var scjs = require('supercolliderjs');

scjs.sclang.boot()
  .then(function(sclang) {

    sclang.interpret('(1..8).pyramid')
      .then(function(result) {
        // result is a native javascript array
        console.log('= ' + result);
      }, function(error) {
        // syntax or runtime errors
        // are returned as javascript objects
        console.log(error);
      });

  });

Compatibility

Works on Node 0.10.x, 0.11.x, 0.12.x and iojs 2.3

Note that the testing framework (jest) does not work on anything except Node 0.10.x, so travis is currently not set to test any other versions.

Contribute

License

The project is licensed under the MIT license.

supercolliderjs's People

Contributors

crucialfelix avatar oatkiller avatar

Stargazers

Michael Anthony avatar

Watchers

Michael Anthony avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.