UNPKG
csound-api
Version:
latest (0.10.21)
0.10.21
0.10.20
0.10.19
0.10.18
0.10.17
0.10.16
0.10.15
0.10.14
0.10.13
0.10.12
0.10.11
0.10.10
0.10.9
0.10.8
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.2
0.10.1
0.10.0
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
0.8.2
0.8.1
0.8.0
0.7.2
0.7.1
0.7.0
0.6.8
0.6.7
0.6.6
0.6.5
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Node.js bindings to Csound’s API
github.com/nwhetsell/csound-api
nwhetsell/csound-api
csound-api
/
examples
/
log-opcodes.js
8 lines
(7 loc)
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
csound =
require
(
'bindings'
)(
'csound-api.node'
);
const
Csound
= csound.
Create
();
const
opcodes = []; csound.
NewOpcodeList
(
Csound
, opcodes);
console
.
log
(opcodes); csound.
DisposeOpcodeList
(
Csound
, opcodes); csound.
Destroy
(
Csound
);