# circularjs

> Traverse circular javascript object graphs, in a non-recursive way

Latest version **0.1.3** (published 2014-04-30) · Apache2 license · 0 weekly downloads

## Install

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

## 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-04-30 |
| First published | 2014-04-14 |
| Weekly downloads | 0 |
| License | Apache2 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+2 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Author | aaaristo |
| Maintainers | aaaristo |
| Keywords | json, graph, traversal, non-recursive |

## Links

- npm: https://www.npmjs.com/package/circularjs
- Repository: https://github.com/aaaristo/circularjs
- Issues: https://github.com/aaaristo/circularjs/issues
- npm.io page: https://npm.io/package/circularjs

## Dependencies (1)

- [underscore](https://npm.io/package/underscore.md) ~1.6.0

## 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.3 (latest) — 2014-04-30
- 0.1.2 — 2014-04-16
- 0.1.1 — 2014-04-16
- 0.1.0 — 2014-04-14

## README

circularjs
==========

Traverse circular javascript object graphs in a non-recursive way.

```
npm install circularjs
```

```javascript

var traverse= require('circularjs');

var a= { name: 'Andrea' },
    e= { name: 'Elena' };
    
a.daughter= e;
e.dad= a;

traverse(a,console.log);
```

## Linked projects

* [circularclone](https://github.com/aaaristo/circularclone): deep clone circular graphs
* [GSON](https://github.com/aaaristo/GSON): serialize circular graphs

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