You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+60-1Lines changed: 60 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ It lets you **inspect logs, variables, performance metrics, and errors in real-t
25
25
1.**Download Feather**
26
26
27
27
- Download the latest release from the [releases page](https://github.com/Kyonru/feather/releases)
28
+
- Copy the `feather/` folder and put it in your project folder
28
29
- Or install it via [Luarocks](https://luarocks.org/modules/kyonru/feather)
29
30
30
31
```bash
@@ -34,7 +35,7 @@ It lets you **inspect logs, variables, performance metrics, and errors in real-t
34
35
1.**Require Feather**
35
36
36
37
```lua
37
-
localFeather=require"feather"
38
+
localFeather=require"feather"-- or the location of the feather folder
38
39
```
39
40
40
41
---
@@ -157,6 +158,64 @@ Feather will automatically capture and log errors in real-time. You can also man
157
158
158
159
Feather comes with a plugin system that allows you to extend its functionality with custom data inspectors. Check out the [Feather Plugins](docs/plugins.md) repository for more information.
159
160
161
+
### TL;DR
162
+
163
+
Minimal example of a debugger file to load feather
0 commit comments