dutymess / chalk
Easy tracepoint generator at the middle of procedures where creating breakpoints is not that easy.
Installs: 1 331
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
- laravel/framework: >=5.5
- nesbot/carbon: >=1.21
This package is auto-updated.
Last update: 2024-11-29 04:52:28 UTC
README
Introduction
Sometimes you need to have tracepoints inside your procedures, without breaking it with dumping some data.
Sometimes it's not very easy to use dd()
or similar ways to see what's going on.
Chalk
will utilize Laravel caching tools to make this work like a breeze.
Install
composer require dutymess/chalk
Simple Usage
⚠️ For security reasons, Chalk
works when and only when the application is in the debug mode.
In the Tracepoint
Easily store what you want to monitor later. A timestamp is added automatically.
chalk()->write($anything);
where
$anything
is a variable of any type, but is more efficient if provided in the type of string.
In a Safe Place
A safe place is somewhere out of your procedure. This could be a blank testing page, or simply the tinker
tool in the terminal console.
Read stored data, ordered by the timestamp.
chalk()->read();
An array of stored data, together with the carbon timestamps will be returned in the form of an array.
Example
❗️ To be Added ❗️
Advanced Usage
Custom Stacks
Sometimes, there are lots of things to be traced. Putting them all in a single array would make it difficult to track the changes.
To solve this problem, you may specify a custom stack name when calling the chalk()
helper.
chalk('jafar')->write('something'); chalk('jafar')->read();
Clearing Data
You may want to reset the current data and start clean at your first tracepoint.
chalk()->clear();
Of course, you may clear your data stored in the custom stacks as well.
chalk('jafar')->clear();
In some odd cases, you may want to clear all the stored data in all available stacks.
chalk()->clearAllStacks();
Custom Expire Time
By default, Chalk()
stores data in the cache for just ten minutes. This should be pretty enough to see what's going on.
However, you may override this default behavior by setting a custom timeout.
chalk()::setTimeout($minutes);
License
Chalk
is open-sourced and licensed under the MIT license.