# rget

> Access your properties by string. Recursively!

Latest version **1.1.0** (published 2013-01-09) · 0 weekly downloads

## Install

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

## 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 | 1.1.0 |
| Published | 2013-01-09 |
| First published | 2011-11-04 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 0.4 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Maciej Małecki |
| Maintainers | mmalecki |

## Links

- npm: https://www.npmjs.com/package/rget
- Repository: https://github.com/mmalecki/node-rget
- npm.io page: https://npm.io/package/rget

## Recent versions

- 1.1.0 (latest) — 2013-01-09
- 1.0.0 — 2011-11-07
- 0.0.1 — 2011-11-04

## README

# rget
Copyright (C) 2011 by Maciej Małecki  
MIT License (see LICENSE file)

Access your properties by string. Recursively!

## Usage

```javascript
var rget = require('rget');

var obj = {
  user: {
    name: 'Fred',
    preferences: {
      coffee: 'black'
    }
  }
};

rget(obj, 'user.preferences.coffee'); // => 'black'

//
// It also supports custom separators.
//
rget(obj, 'user:preferences:coffee', ':'); // => 'black'
```

## Installation

    npm install rget

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