# bigpipe-godot

> A simple plugin to expose a godot client on a bigpipe server

Latest version **0.1.3** (published 2014-08-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install bigpipe-godot
pnpm add bigpipe-godot
yarn add bigpipe-godot
bun add bigpipe-godot
```

## 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.3 |
| Published | 2014-08-09 |
| First published | 2014-05-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| Author | Jarrett Cruger |
| Maintainers | jcrugzz |
| Keywords | bigpipe, realtime, godot, metrics |

## Links

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

## Dependencies (2)

- [debug](https://npm.io/package/debug.md) ^0.8.1
- [godot](https://npm.io/package/godot.md) ^0.7.5

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2014-08-09
- 0.1.2 — 2014-05-13
- 0.1.1 — 2014-05-13
- 0.1.0 — 2014-05-12

## README

# bigpipe-godot

Easily hook a [`godot`](https://browsenpm.org/package/godot) client onto your
bigpipe instance for a simple interface to produce metrics!

```js

var path = require('path');
var Pipe = require('bigpipe');
var godot = require('bigpipe-godot');
va Memory = requir('memory-producer');

//
// Make a BigPipe instance!
//
var pipe = new Pipe(require('http').createServer(), {
  pages: path.join(__dirname, 'pages'),
  dist: path.join(__dirname, 'dist'),
  godot: {
    type: 'tcp',
    host: 'my-metrics-endpoint.com',
    port: 8556
  }
}).listen(3000).use(godot);

//
// After we use the godot plugin, we can now interact with the instance!
// We can add producers like `memory-producer` to magically produce
// memory metrics for us!
//
pipe.godot.add(new Memory({ service: 'bigpipe-godot' }));

```

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