# simplysave

> Extremely basic saving system in Node.JS

Latest version **1.0.0** (published 2018-08-12) · ISC license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

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

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2018-08-12 |
| First published | 2018-08-12 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 12.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | scriptbased |
| Maintainers | scriptbased |

## Links

- npm: https://www.npmjs.com/package/simplysave
- npm.io page: https://npm.io/package/simplysave

## Recent versions

- 1.0.0 (latest) — 2018-08-12

## README

## SimplySave

A module created to save basic data easily and fast.


### Example

```JavaScript
const simplySave = require('simplysave');

let saver = new simplySave(/* options */)

/* Options {
    ignoreErrors: true | false -- Will ignore errors, returns 'false' when doing .init() and null when using saving related methods
    dataName: 'Name of the data folder' -- The name of the data folder, default is 'data'
    path: '/path/to/where/the/data/folder/will/be -- (*Optional*) the path to where the data folder will be
}*/


saver.init().then(async success=>{
    if (success) {
        await saver.save('myName', 'Martini');
        console.log(await saver.get('myName')) // --> Martini
    
        await saver.delete('myName')
        console.log(await saver.get('myName')) // --> error
    }
})
```

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