# nodejs-echo

> HTTPs requests debugging tool for nodejs

Latest version **4.0.4** (published 2022-10-11) · ISC license · 0 weekly downloads

## Install

```sh
npm install nodejs-echo
pnpm add nodejs-echo
yarn add nodejs-echo
bun add nodejs-echo
```

Provides the command `nodejs-echo`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 4.0.4 |
| Published | 2022-10-11 |
| First published | 2019-04-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 3.8 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Alexey Anisimov anissoftkun@gmail.com |
| Maintainers | anissoft |
| Keywords | http, request, debug, tool |

## Links

- npm: https://www.npmjs.com/package/nodejs-echo
- Repository: https://github.com/Anissoft/nodejs-echo
- Homepage: https://github.com/Anissoft/node-network-tools-core#readme
- Issues: https://github.com/Anissoft/node-network-tools-core/issues
- npm.io page: https://npm.io/package/nodejs-echo

## Dependencies (5)

- [ws](https://npm.io/package/ws.md) ^7.2.1
- [chalk](https://npm.io/package/chalk.md) ^3.0.0
- [express](https://npm.io/package/express.md) ^4.17.1
- [@types/ws](https://npm.io/package/@types/ws.md) ^7.2.1
- [http-server](https://npm.io/package/http-server.md) ^0.12.3

## Alternatives

- [launchdarkly-js-client-sdk](https://npm.io/package/launchdarkly-js-client-sdk.md) — 2.5M weekly downloads
- [@elastic/elasticsearch](https://npm.io/package/@elastic/elasticsearch.md) — 2.1M weekly downloads
- [@c8y/client](https://npm.io/package/@c8y/client.md) — 15.3K weekly downloads
- [@signaldb/maverickjs](https://npm.io/package/@signaldb/maverickjs.md) — 1.7K weekly downloads
- [@bbc/http-transport-cache](https://npm.io/package/@bbc/http-transport-cache.md) — 1.2K weekly downloads

## Recent versions

- 4.0.4 (latest) — 2022-10-11
- 2.0.2 (beta) — 2020-02-18
- 4.0.3 — 2022-10-11
- 4.0.2 — 2022-10-11
- 4.0.1 — 2022-10-11
- 4.0.0 — 2022-10-11
- 3.0.1 — 2021-03-02
- 3.0.0 — 2021-03-02
- 2.1.0 — 2020-02-27
- 2.0.7 — 2020-02-18
- 2.0.6 — 2020-02-18
- 2.0.5 — 2020-02-18
- 2.0.3 — 2020-02-18
- 2.0.1 — 2020-02-18
- 2.0.0 — 2020-02-18
- … 21 more at https://npm.io/package/nodejs-echo/versions

## README

# NodeJS Echo
## Network debugging tool

NodeJS Echo provides an easy way to monitor requests from your nodejs application.

![list view](https://github.com/Anissoft/nodejs-echo/raw/master/screenshots/rl.png)

![request view](https://github.com/Anissoft/nodejs-echo/raw/master/screenshots/rw.png)

## Installation

```sh
npm install nodejs-echo --save-dev
```

## Usage

Import `start` command from package and execute it in the very beginning of your program. This will start the static server and provide exact link to the web interface in the stdout.

```js
const { start } = require('nodejs-echo');

start({ port: 4900, secret: 'any-string' });
```

> Parameter `secret` is optional but highly recommended to use in public networks;

The correct way to do so -  place the above code in a separate file (e.g. echo.js) and import it in your application's entry point (e.g. index.js).

```js
require('./echo.js');

// your code...
```

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