# jessy

> get value by object property

Latest version **5.0.1** (published 2026-03-05) · MIT license · 0 weekly downloads

## Install

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

## Health

**Score 50/100 (C)** — status: stable.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 5.0.1 |
| Published | 2026-03-05 |
| First published | 2015-03-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >=22 |
| Dependencies | 0 |
| Unpacked size | 7.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 5 |
| Author | coderaiser |
| Maintainers | coderaiser |
| Keywords | object, value, property |

## Links

- npm: https://www.npmjs.com/package/jessy
- Repository: https://github.com/coderaiser/jessy
- Homepage: http://github.com/coderaiser/jessy
- Issues: https://github.com/coderaiser/jessy/issues
- npm.io page: https://npm.io/package/jessy

## Recent versions

- 5.0.1 (latest) — 2026-03-05
- 5.0.0 — 2026-01-11
- 4.1.0 — 2025-03-04
- 4.0.0 — 2025-03-04
- 3.1.1 — 2020-09-01
- 3.1.0 — 2020-08-19
- 3.0.0 — 2019-12-21
- 2.0.2 — 2019-03-21
- 2.0.1 — 2016-11-02
- 2.0.0 — 2016-11-02
- 1.1.5 — 2016-11-01
- 1.1.4 — 2016-11-01
- 1.1.3 — 2016-10-20
- 1.1.2 — 2016-10-20
- 1.1.1 — 2016-04-29
- … 4 more at https://npm.io/package/jessy/versions

## README

# Jessy [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL] [![Coverage Status][CoverageIMGURL]][CoverageURL]

[BuildStatusURL]: https://github.com/coderaiser/jessy/actions?query=workflow%3A%22Node+CI%22 "Build Status"
[BuildStatusIMGURL]: https://github.com/coderaiser/jessy/workflows/Node%20CI/badge.svg
[NPMURL]: https://npmjs.org/package/jessy "npm"
[NPMIMGURL]: https://img.shields.io/npm/v/jessy.svg?style=flat
[LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"
[LicenseIMGURL]: https://img.shields.io/badge/license-MIT-317BF9.svg?style=flat
[CoverageURL]: https://coveralls.io/github/coderaiser/jessy?branch=master
[CoverageIMGURL]: https://coveralls.io/repos/coderaiser/jessy/badge.svg?branch=master&service=github

Get value by object property.

## Install

`npm i jessy --save`

## Hot to use?

```js
import {jessy} from 'jessy';

jessy('hello.world', {
    hello: {
        world: 'could be used in browser as well',
    },
});

// returns
'could be used in browser as well';

jessy('work-with-divider', '-', {
    work: {
        with: {
            divider: 'could use divider as well',
        },
    },
});

// returns
'could use divider as well';

jessy('', {
    hello: 'world',
});

// returns
{
    hello: 'world';
}
```

## Related

- [nessy](https://github.com/coderaiser/nessy "nessy") - set value in nested object.
- [all-object-keys](https://github.com/coderaiser/all-object-keys "all-object-keys") - get all keys of object.
- [finicky](https://github.com/coderaiser/finicky "finicky") - delete property of an object

## License

MIT

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