Tree @v0.1 (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/value_spec.moon
Commit History
@v0.1
git clone https://git.s-ol.nu/alive.git
- release v0.1 s-ol 2 years ago
- fix release script s-ol 2 years ago
- fix logic/not and logic/bool s-ol 2 years ago
- fix util/edge s-ol 2 years ago
- move internal md docs into docs/internals s-ol 2 years ago
- refer to the language as 'alv' in documentation s-ol 2 years ago
- do not fix lua version in rockspec s-ol 2 years ago
- fix existing tests s-ol 2 years ago
- fix registry/module bugs s-ol 2 years ago
- relative imports s-ol 2 years ago
- add root .gitignore s-ol 2 years ago
- only mark ValueStreams dirty if they actually changed s-ol 2 years ago
- code readability s-ol 2 years ago
- remove AST:quote() s-ol 2 years ago
- fix alv-wx, logging s-ol 2 years ago
- better (require) implementation s-ol 2 years ago
- move tick-counting into COPILOT s-ol 2 years ago
- better logging interface s-ol 2 years ago
- lib/string: fix str/.. s-ol 2 years ago
- report IO errors with require s-ol 2 years ago
- bump to scm-3 s-ol 2 years ago
- export and export* to create alive modules s-ol 2 years ago
- add wxLua alv-wx s-ol 2 years ago
- also pack source rocks s-ol 2 years ago
- release v0.1-rc4 s-ol 2 years ago
- reassign duplicate tags (and print a warning) s-ol 2 years ago
- output to different streams at eval/runtime s-ol 2 years ago
- merge dist/pack and dist/release s-ol 2 years ago
- release v0.1-rc3 s-ol 2 years ago
- prepare for repo transition alivecoding -> alive s-ol 2 years ago