Improve README.md again

This commit is contained in:
Jeremy Baxter 2023-07-26 09:32:46 +12:00
parent f479ad5102
commit fa8d6035c5

View file

@ -1,6 +1,6 @@
# Callisto # Callisto
A featureful extension runtime for Lua 5.4, using POSIX . A featureful extension runtime for Lua 5.4, using POSIX APIs.
Callisto is an extension to Lua that adds commonly-needed functions Callisto is an extension to Lua that adds commonly-needed functions
and features to the language, and includes a file library to manage and features to the language, and includes a file library to manage
@ -8,6 +8,10 @@ and manipulate files, a process library to find active processes and
manipulate signals, a socket and networking library using LuaSocket, manipulate signals, a socket and networking library using LuaSocket,
and a JSON manipulation library *among many more*. and a JSON manipulation library *among many more*.
It is a standalone runtime designed for people using Lua as a
general scripting language, instead of using it embedded into
another application.
Before I made Callisto, I usually had to rely on three libraries: Before I made Callisto, I usually had to rely on three libraries:
luaposix for basic file manipulation and other routines, lua-cjson luaposix for basic file manipulation and other routines, lua-cjson
for JSON parsing support and LuaSocket for networking. for JSON parsing support and LuaSocket for networking.