Tree @v0.1-rc1 (Download .tar.gz)
alive-coding
This is an experimental livecoding language and environment, in which expressions persist and update until they are removed from the source code, and the interpreter keeps no state that you cannot manipulate directly in the source. This yields a direct-manipulation like experience with a purely text-based language and works without special editor support.
This README contains a short overview over installation and development processes. For more information, visit the full online documentation.
dependencies
- MoonScript:
luarocks install moonscript
- luafilesystem*:
luarocks install luafilesystem
- LPeg*:
luarocks install lpeg
- osc:
luarocks install osc
- socket:
luarocks install luasocket
- system:
luarocks install luasystem
- lua-rtmidi:
luarocks install https://raw.githubusercontent.com/s-ol/lua-rtmidi/master/lua-rtmidi-dev-1.rockspec
- busted:
luarocks install busted
(optional, for tests) - discount:
luarocks install discount
(optional, for docs) - ldoc:
luarocks install https://raw.githubusercontent.com/s-ol/LDoc/moonscript/ldoc-scm-2.rockspec
(optional, for docs)
* these are also moonscript
dependencies and do not neet to be installed
manually.
docs
With make
the HTML documentation is generated in docs/
.
The latest documentation is publicly available online at alive.s-ol.nu.
starting the copilot
$ moon init.moon <session.alv>
For more information see the getting started guide.
running the tests
The tests use the busted Lua unit testing framework. To run all tests, simply start busted in the main directory:
$ busted
To run individual test files, for example to speed up execution during development, simply pass the files as arguments:
$ busted spec/core/value_spec.moon
Commit History
@v0.1-rc1
git clone https://git.s-ol.nu/alive.git
- add hello.alv s-ol 3 years ago
- docs: automatic release linking s-ol 3 years ago
- docs/internals/extensions rename s-ol 3 years ago
- add builtin print s-ol 3 years ago
- docs/guide: per-platform install info s-ol 3 years ago
- change header link to release s-ol 3 years ago
- release v0.1-rc1 s-ol 3 years ago
- add match spec s-ol 3 years ago
- new core.base.match, update lib s-ol 3 years ago
- Value -> Value/Event/IO-Stream s-ol 3 years ago