# look

> Performance profiler based on nodetime

Latest version **0.1.3** (published 2013-04-29) · 0 weekly downloads

## Install

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

## 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.3 |
| Published | 2013-04-29 |
| First published | 2012-08-29 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.8.0 |
| Dependencies | 5 |
| Known vulnerabilities | 0 (+5 in 2 direct dependencies) |
| Install scripts | no |
| GitHub stars | 447 |
| Author | Vadim M. Baryshev |
| Maintainers | baryshev |
| Keywords | profiler, profiling, tracing, cpu, heap, performance, instrumentation, response time, performance, bottlenecks, monitoring, analytics, metrics |

## Links

- npm: https://www.npmjs.com/package/look
- Repository: https://github.com/baryshev/look
- npm.io page: https://npm.io/package/look

## Dependencies (5)

- [connect](https://npm.io/package/connect.md) 2.7.4
- [nodetime](https://npm.io/package/nodetime.md) 0.4.6
- [socket.io](https://npm.io/package/socket.io.md) 0.9.14
- [clusterhub](https://npm.io/package/clusterhub.md) 0.2.1
- [connect-route](https://npm.io/package/connect-route.md) 0.1.3

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 0.1.3 (latest) — 2013-04-29
- 0.1.2 — 2012-10-04
- 0.1.0 — 2012-09-07
- 0.0.4 — 2012-08-29
- 0.0.3 — 2012-08-29
- 0.0.2 — 2012-08-29
- 0.0.1 — 2012-08-29

## README

# Look

Look is a perfomance profiler for node.js applications based on [nodetime](https://github.com/nodetime/nodetime).
Look don't send any data outside your server.

# Installation

	npm install look

# Usage

The following call should be placed before any other require statement in your application, e.g. at the first line of your main module

```js
require('look').start();
```

Look will be started as a web server on port `5959`, you can access it by pointing your browser to: `http://[yourhost]:5959`

# Options

  - `port` Listening port, defaulting to `5959`
  - `host` Listening host, defaulting to `0.0.0.0`

```js
require('look').start(3000, '127.0.0.1');
```

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