vult
Version:
Vult is a transcompiler well suited to write high-performance DSP code
28 lines (16 loc) • 918 B
Markdown

This is the JavaScript version of the Vult compiler that can be run with node.js. This is a command line application if you want to use it as a node.js library use instead [vultlib](https://www.npmjs.com/package/vultlib).
You can find the full project in https://github.com/modlfo/vult
Tutorials and documentation can be found the main site http://modlfo.github.io/vult/
## Installing
You can install the command line application with the following command
```
$ npm install vult -g
```
You can install the library with
```
$ npm install vultlib
```
## Usage
After installing you should have an executable `vultc` which is the main Vult compiler. If `vultc` is not available, you can run the main JavaScript file (vultc.js) with node.
Refer to the main repository to get more information about using Vult https://github.com/modlfo/vult