http://mohayonao.github.io/CoffeeCollider/
- "Run" でコードを実行
- "Stop" で停止
- "Link" でコードをリンク化 (保存)
- "Compile" コンパイル後のコード(JavaScript)を表示
- サンプルコード読み込み
| node { | |
| stage('Git') { | |
| git 'https://github.com/muuki88/activator-play-cluster-sample.git' | |
| } | |
| stage('Build') { | |
| def builds = [:] | |
| builds['scala'] = { | |
| // assumes you have the sbt plugin installed and created an sbt installation named 'sbt-0.13.13' | |
| sh "${tool name: 'sbt-0.13.13', type: 'org.jvnet.hudson.plugins.SbtPluginBuilder$SbtInstallation'}/bin/sbt compile test" | |
| } |
http://mohayonao.github.io/CoffeeCollider/
| var fs = require('fs'); | |
| var http = require('http'); | |
| var util = require('util'); | |
| var file = './1G.file'; | |
| var stat = fs.statSync(file); | |
| http.createServer(function (req, res) { | |
| res.writeHead(200, {'Content-Type': 'octet-stream/binary', | |
| 'Content-Length': stat.size | |
| }); | |
| var rStream = fs.createReadStream(file); |