-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<p align="center"> | ||
<img src="./art/logo.png" height="128" alt="" /> | ||
</p> | ||
<h1 align="center">LaraDumps Js</h1> | ||
|
||
<div align="center"> | ||
<p align="center"> | ||
<a href="https://packagist.org/packages/laradumps/laradumps-core"> | ||
<img alt="Total Downloads" src="https://img.shields.io/packagist/dt/laradumps/laradumps-core"> | ||
</a> | ||
<a href="https://packagist.org/packages/laradumps/laradumps-core"> | ||
<img alt="Latest Version" src="https://img.shields.io/packagist/v/laradumps/laradumps-core"> | ||
</a> | ||
<a href="https://github.com/laradumps/laradumps-core/actions"> | ||
<img alt="Tests" src="https://github.com/laradumps/laradumps-core/workflows/LaraDumpsCore%20Tests/badge.svg" /> | ||
</a> | ||
<a href="https://packagist.org/packages/laradumps-core/laradumps"> | ||
<img alt="License" src="https://img.shields.io/github/license/laradumps/laradumps-core"> | ||
</a> | ||
</p> | ||
</div> | ||
|
||
### 👋 Hello Dev, | ||
|
||
<br/> | ||
|
||
LaraDumps is a user-friendly application designed to boost your coding and debugging experience. | ||
|
||
When using LaraDumps, you can see your debugging results displayed in a standalone Desktop application. | ||
|
||
### Get Started | ||
|
||
#### Web | ||
|
||
1. Add the min script to your header. | ||
|
||
```html | ||
<script src=" | ||
https://cdn.jsdelivr.net/npm/laradumps-js/dist/laradumps.min.js | ||
"></script> | ||
``` | ||
|
||
2. Add a `ds()` function somewhere in your code. | ||
|
||
--- | ||
|
||
#### NodeJs | ReactJs | React Native | ||
|
||
1. Install LaraDumps Js in your project, run the command: | ||
|
||
```shell | ||
yarn add -D laradumps-js | ||
npm install -D laradumps-js | ||
``` | ||
|
||
2. Import the Laradumps Js | ||
|
||
```Javascript | ||
import {ds} from 'laradumps-js' | ||
``` | ||
or | ||
```Javascript | ||
import 'laradumps-js' | ||
``` | ||
|
||
3. Add a `ds()` function somewhere in your code. | ||
|
||
#### Vite | ||
|
||
1. Install LaraDumps Js in your project, run the command: | ||
|
||
```shell | ||
yarn add -D laradumps-js | ||
npm install -D laradumps-js | ||
``` | ||
|
||
2. Import Laradumps Js inside bootstrap | ||
|
||
```Javascript | ||
import 'laradumps-js' | ||
``` | ||
|
||
3. Add a `ds()` function somewhere in your code. | ||
|
||
Here's an example: | ||
|
||
```js | ||
//... some JS code ... | ||
|
||
ds('Hello from LaraDumps!').info(); | ||
``` | ||
|
||
### Credits | ||
|
||
- Author: [Luan Freitas](https://github.com/luanfreitasdev) | ||
|
||
- Contribution: [Hecktor Viegas](https://github.com/hecktorvn) | ||
|
||
- Logo by [Vitor S. Rodrigues](https://github.com/vs0uz4) |