# working_bee

> Node module to facilitate debugging variables

Latest version **0.1.1** (published 2021-05-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install working_bee
pnpm add working_bee
yarn add working_bee
bun add working_bee
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2021-05-11 |
| First published | 2021-05-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 3.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Luis Edgar Flores Carpinteyro |
| Maintainers | luisedgarflores |
| Keywords | debug, js |

## Links

- npm: https://www.npmjs.com/package/working_bee
- npm.io page: https://npm.io/package/working_bee

## Dependencies (4)

- [esm](https://npm.io/package/esm.md) ^3.2.25
- [colors](https://npm.io/package/colors.md) ^1.4.0
- [lodash](https://npm.io/package/lodash.md) ^4.17.21
- [nodemon](https://npm.io/package/nodemon.md) ^2.0.7

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 0.1.1 (latest) — 2021-05-11
- 0.1.0 — 2021-05-11
- 0.0.9 — 2021-05-04
- 0.0.8 — 2021-05-04
- 0.0.7 — 2021-05-03

## README

# working_bee

## Description

working_bee is a basic package that allows you to debug JS variables with ease. It is inspired by vscode extension Turbo Console Log.

## Usage

In order to debug a variable, you can use the next snippet

```js
import { debug } from 'working_bee'

const foo = 'bar'

debug({foo})
```



The previous code will print your current file name, the line in which debug was called,  the name of your variable, and it’s value.

Also, you can print simple strings to mark important points in your code, following the next snippet:

```js
import { debug } from 'working_bee'

debug('Foo')
```

The previous code will log your current file, the line in which debug was called and the string you send as param.



## Contact

I will try to keep this package updated and working properly, so, if you find any bug or wish some feature to be implemented, contact me trough: luisedgarflorescarpinteyro@gmail.com

---
_Source: https://npm.io/package/working_bee · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
