dphelper
Version:
dphelper devtools for developers
57 lines (41 loc) • 1.43 kB
Markdown
# credits
Application startup credits and initialization logger.
## Functions
| Function | Description |
|----------|-------------|
| `credits` | Logs application startup information to console |
## Description
Displays application information on startup:
- **Version** - Current application version
- **Author** - Developer credits
- **Console Logging** - Grouped, styled output
## Usage Examples
### Automatic Startup
```javascript
// Automatically called on dphelper initialization
// Shows in console:
//
// ┌─────────────────────────────────────┐
// │ dphelper v1.0.0 │
// │ by Dario Passariello started │
// │ name: dphelper │
// │ version: 1.0.0 │
// └─────────────────────────────────────┘
// Output is styled with orange color for visibility
```
### Console Output
```javascript
// When called, displays:
// dphelper v1.0.0
// by Dario Passariello started
// name: dphelper
// version: 1.0.0
```
## Details
- **Author:** Dario Passariello
- **Version:** 0.0.1
- **Creation Date:** 20210101
- **Last Modified:** 20210101
- **Environment:** Client-side only (browser)
---
*Automatically generated document*