New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

quickdebugger

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

quickdebugger

Quickly debug your code with this simple debugger

latest
npmnpm
Version
1.0.6
Version published
Maintainers
0
Created
Source

quickdebugger

quickdebugger is a lightweight utility designed to simplify debugging by logging execution time, memory usage, and detailed error traces. This package is perfect for developers looking to improve their debugging process and enhance code performance insights.

Table of Contents

  • Installation
  • Usage
  • Features
  • API Reference
  • Contributing
  • License

Installation

You can install quickdebugger using npm:

npm install quickdebugger

Usage

Node.js Usage

Here's how to use quickdebugger in a Node.js application:

  • Import the debugger:
const debug = require('quickdebugger');
  • Wrap your asynchronous functions with the debug function:
const fetchData = debug(async function fetchData() {
    // Simulating a delay
    return new Promise((resolve) => {
        setTimeout(() => resolve("Data fetched"), 200);
    });
});

const runTests = async () => {
    await fetchData();
};

runTests();

React Usage

quickdebugger

can also be used in React components to monitor performance and errors.

  • Install the package (if you haven't already):
npm install quickdebugger
  • Import and use the debugger in your React component:
import React, { useEffect } from 'react';
import debug from 'quick-debugger/index';

const fetchData = debug(async function fetchData() {
    // Simulate API call
    return new Promise((resolve) => {
        setTimeout(() => resolve("Data fetched"), 500);
    });
});

const MyComponent = () => {
    useEffect(() => {
        const loadData = async () => {
            try {
                const data = await fetchData();
                console.log(data);
            } catch (error) {
                console.error('Error fetching data:', error);
            }
        };

        loadData();
    }, []);

    return <div>Check the console for debug information!</div>;
};

export default MyComponent;
  • Run your React application and observe the console for debugging information.

Features

  • Execution Time Logging: Automatically logs how long functions take to execute.
  • Memory Usage Monitoring: Provides insights into memory usage during function execution.
  • Error Handling: Captures and logs error stack traces, making debugging easier.
  • Easy to Use: Wrap any function with a simple call and get instant logs.

API Reference

debug(fn)

Parameters

  • fn: An asynchronous function that you want to debug.

Returns

  • A new function that, when called, logs execution time, memory usage, and error traces.

Example

const myFunction = debug(async function myFunction() {
    // Your function code here
});

myFunction();

License

This project is licensed under the MIT License - see the LICENSE file for details.


### Explanation of the `README.md`

- **Installation**: Instructions for installing the package.
- **Usage**: Detailed sections on how to use the package in both Node.js and React applications, with clear code examples.
- **Features**: Highlights the main features of the package.
- **API Reference**: Describes the `debug` function and how to use it.
- **Contributing**: Provides guidelines for contributing to the project.
- **License**: Mentions the license type.

Feel free to modify any sections or add additional features based on your package development. Let me know if you need any more help!

Keywords

debugger

FAQs

Package last updated on 17 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts