# pinlog

> Simple tool that 'pins' the output of tools like nodemon to always start at the top of the terminal window

Latest version **0.1.5-SNAPSHOT** (published 2015-12-12) · 0 weekly downloads

## Install

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

Provides the command `pinlog`.

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.5-SNAPSHOT |
| Published | 2015-12-12 |
| First published | 2015-02-01 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | gdanov |

## Links

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

## Dependencies (2)

- [dateformat](https://npm.io/package/dateformat.md) 1.0.12
- [source-map-support](https://npm.io/package/source-map-support.md) 0.4.0

## Recent versions

- 0.1.5-SNAPSHOT (latest) — 2015-12-12
- 0.1.4-SNAPSHOT — 2015-12-12
- 0.1.3-SNAPSHOT — 2015-02-01
- 0.1.2-SNAPSHOT — 2015-02-01
- 0.1.1-SNAPSHOT — 2015-02-01
- 0.1.0-SNAPSHOT — 2015-02-01

## README

# pinlog
Simple tool that 'pins' the output of tools like nodemon to always start at the top of the terminal window so that 
I eliminate the distraction of the constantly moving text in the console. Has hardcoded rules for nodemon and lein-cljsbuild. 

To use just do

```
nodemon | pinlog
```

Works by clearing the screen when certain pattern is detected in the output.

Rules are loaded from ```./.pinlog``` and must be array with JavaScript futctions.

Example:
```
[
	function lein(str){
		return /Compiling \"/.test(str);
	}
]
```

If you want to run it locally from soucre use ```lein npm link```

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