Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

destructio

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

destructio

```javascript import { d } from 'destructio';

  • 1.1.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by85.71%
Maintainers
1
Weekly downloads
 
Created
Source

Destructuring did right, debugging made easy!

Destructio is a helpful tool that can be used everywhere where a lot of destructuring is used like in React JS for example.

import { d } from 'destructio';

const hero = {
  name: 'Batman',
  realName: 'Bruce Wayne',
};

const { name, realName } = d('Hero', hero);
/* 
Adding a string as the first param lets you immediately 
know what you are destructuring, and helps other people 
working on your code or you coming back after a while.

By adding `log-` in front of your naming the data gets automatically logged
to the console this gets rid of all the console.log's we used to write to debug things,
after you succefully debugt your code simply remove the log- again.
*/
const { name, realName } = d('log-Hero', hero);

React JS Example

import React from 'react';
import { d } from 'destructio';

function NumberList(props) {
  // props gets logged to the console because of log- in the naming.
  const { numbers } = d('log-Props', props);

  const listItems = numbers.map((number) => <li>{number}</li>);

  return <ul>{listItems}</ul>;
}

export default NumberList;

FAQs

Package last updated on 05 Aug 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc