# fullstore

> functional variables

Latest version **4.0.3** (published 2026-06-09) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 4.0.3 |
| Published | 2026-06-09 |
| First published | 2017-05-22 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | >=22 |
| Dependencies | 0 |
| Unpacked size | 5.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | coderaiser |
| Maintainers | coderaiser |
| Keywords | store, variable, functional |

## Links

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

## Recent versions

- 4.0.3 (latest) — 2026-06-09
- 4.0.2 — 2026-03-18
- 4.0.1 — 2026-03-18
- 4.0.0 — 2026-01-11
- 3.0.0 — 2020-03-25
- 2.0.2 — 2019-09-09
- 2.0.1 — 2019-09-09
- 2.0.0 — 2019-09-09
- 1.1.0 — 2017-09-07
- 1.0.0 — 2017-05-22

## README

# Fullstore [![License][LicenseIMGURL]][LicenseURL] [![NPM version][NPMIMGURL]][NPMURL] [![Build Status][BuildStatusIMGURL]][BuildStatusURL]

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

Functional variables.

## Install

```
npm i fullstore --save
```

## How to use?

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

const user = fullstore();

const getValue = () => {
    return 'name';
};

user(getValue());

console.log(user());
// output
'name';
```

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

const user = fullstore('hello');

console.log(user());
// output
'hello';
```

## Related

- [zames](https://github.com/coderaiser/zames "zames") - converts callback-based functions to Promises and apply currying to arguments

- [wraptile](https://github.com/coderaiser/wraptile "wraptile") - translate the evaluation of a function that takes multiple arguments into evaluating a sequence of 2 functions, each with a any count of arguments.

- [currify](https://github.com/coderaiser/currify "currify") - translate the evaluation of a function that takes multiple arguments into evaluating a sequence of functions, each with a single or more arguments.

## License

MIT

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