• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

build-aux/H04-Sep-2018-3,3522,237

doc/H03-May-2022-308266

lib/H04-Sep-2018-7,1463,060

m4/H04-Sep-2018-665610

specs/H04-Sep-2018-8,3607,217

.autom4te.cfgH A D04-Sep-2018147 54

.travis.ymlH A D04-Sep-20184.8 KiB158132

AUTHORSH A D04-Sep-20181 KiB2820

COPYINGH A D04-Sep-20181.4 KiB2823

ChangeLogH A D04-Sep-2018273.8 KiB7,3715,649

GNUmakefileH A D04-Sep-20182.4 KiB8324

INSTALLH A D04-Sep-201815.4 KiB371289

Makefile.amH A D04-Sep-20182.5 KiB11044

Makefile.inH A D04-Sep-201843.7 KiB1,2451,013

NEWSH A D04-Sep-201850.9 KiB1,326931

READMEH A D04-Sep-20182.2 KiB7446

aclocal.m4H A D04-Sep-201826.7 KiB742668

bootstrapH A D04-Sep-2018164.1 KiB5,7973,104

bootstrap.confH A D04-Sep-20182.1 KiB7326

configureH A D04-Sep-2018123.6 KiB4,2433,400

configure.acH A D04-Sep-20181.3 KiB4134

local.mkH A D04-Sep-20184.2 KiB15975

rockspec.confH A D04-Sep-2018448 1712

stdlib-41.2.2-1.rockspecH A D04-Sep-20181.4 KiB4140

travis.yml.inH A D04-Sep-20184.8 KiB155130

README

1Standard Lua libraries
2======================
3
4by the [stdlib project][github]
5
6[github]: http://github.com/lua-stdlib/lua-stdlib/ "Github repository"
7
8[![travis-ci status](https://secure.travis-ci.org/lua-stdlib/lua-stdlib.png?branch=master)](http://travis-ci.org/lua-stdlib/lua-stdlib/builds)
9[![Stories in Ready](https://badge.waffle.io/lua-stdlib/lua-stdlib.png?label=ready&title=Ready)](https://waffle.io/lua-stdlib/lua-stdlib)
10
11
12This is a collection of Lua libraries for Lua 5.1, 5.2 and 5.3. The
13libraries are copyright by their authors 2000-2015 (see the AUTHORS
14file for details), and released under the MIT license (the same
15license as Lua itself). There is no warranty.
16
17Stdlib has no prerequisites beyond a standard Lua system.
18
19
20Installation
21------------
22
23The simplest way to install stdlib is with [LuaRocks][]. To install the
24latest release (recommended):
25
26    luarocks install stdlib
27
28To install current git master (for testing):
29
30    luarocks install https://raw.githubusercontent.com/lua-stdlib/lua-stdlib/release/stdlib-git-1.rockspec
31
32To install without LuaRocks, check out the sources from the
33[repository][github], and then run the following commands: the
34dependencies are listed in the dependencies entry of the file
35`stdlib-rockspec.lua`. You will also need autoconf and automake.
36
37    cd lua-stdlib
38    autoreconf --force --version --install
39    ./configure --prefix=INSTALLATION-ROOT-DIRECTORY
40    make all check install
41
42See [INSTALL][] for instructions for `configure`.
43
44[luarocks]: http://www.luarocks.org "LuaRocks Project"
45[install]: https://raw.githubusercontent.com/lua-stdlib/lua-stdlib/master/INSTALL
46
47Use
48---
49
50As well as requiring individual libraries, you can load the standard
51set with
52
53    require "std"
54
55Modules not in the standard set may be removed from future versions of
56stdlib.
57
58
59Documentation
60-------------
61
62The libraries are [documented in LDoc][github.io]. Pre-built HTML
63files are included in the release.
64
65[github.io]: http://lua-stdlib.github.io/lua-stdlib
66
67
68Bug reports and code contributions
69----------------------------------
70
71These libraries are written and maintained by their users. Please make
72bug report and suggestions on GitHub (see URL at top of file). Pull
73requests are especially appreciated.
74