lua第三方庫


一、Lua 包管理工具

1、LuaRocks

  luarocks 是Lua常用的包管理工具(還有一個是LuaDist),其安裝方式請參考官網:https://luarocks.org/#quick-start

wget https://luarocks.org/releases/luarocks-2.4.1.tar.gz
tar zxpf luarocks-2.4.1.tar.gz cd luarocks-2.4.1 ./configure; sudo make bootstrap

測試: sudo luarocks install luasocket

2、LuaDist

  安裝方式參考官網:http://luadist.org/

curl -L "https://tinyurl.com/luadist" > install.sh
sh install.sh

測試:sudo luadist install luaexpat

 

二、luasocket

 

sudo luarocks install rapidjson sudo luarocks install luasocket

安裝好之后,就可以使用了:

local rapidjson = require("rapidjson") local http = require("socket.http") user = {1,2,3,4} print(rapidjson.encode(user)) local response = http.request("http://www.baidu.com") print(response)

 http://blog.csdn.net/aisajiajiao/article/details/19332397

 

 

三、rapidjson

 

四、luafilesystem

 

五、

 

 

xlua

 

http://blog.csdn.net/jymn_chen/article/details/21613745


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM