···2233svg lua library *(made for LUA 5.3.4)*
4455+## Installation
66+77+You can install the minified version using NPM with NodeJS: `npm i svg-lua`
88+59## usage
1010+1111+To use the installed minified version, you must add the reference for LUA to the file.
1212+To do it, add the following at the begining of your LUA file *(replace <path_to_the_node_module_directory> by the correct string eg: ".\\" if it's in the same directory)*:
1313+***If you are using relative path, think it's the path from the LUA binaries files, not from you code file***
1414+1515+```lua
1616+package.path = package.path .. ";" .. "<path_to_the_node_modules_directory>\\node_modules\\svg-lua\\?.lua"
1717+require "svg-min"
1818+```
619720```lua
821mon_dessin = svg:create()