# wumpa.db

> Güzel bir Türk yapımı typescript databasesi.

Latest version **1.0.0** (published 2022-04-23) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install wumpa.db
pnpm add wumpa.db
yarn add wumpa.db
bun add wumpa.db
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2022-04-23 |
| First published | 2022-04-23 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 14 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | iredent |
| Maintainers | iredent |
| Keywords | db, storage, wrapper, api, database |

## Links

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

## Dependencies (1)

- [node-fetch](https://npm.io/package/node-fetch.md) ^2.6.1

## Alternatives

- [angular-pipes](https://npm.io/package/angular-pipes.md) — 5.6K weekly downloads
- [@ng-web-apis/midi](https://npm.io/package/@ng-web-apis/midi.md) — 2.6K weekly downloads
- [happn-3](https://npm.io/package/happn-3.md) — 1.6K weekly downloads
- [@opensip-cli/lang-go](https://npm.io/package/@opensip-cli/lang-go.md) — 1.2K weekly downloads
- [mongoose-typescript](https://npm.io/package/mongoose-typescript.md) — 85 weekly downloads

## Recent versions

- 1.0.0 (latest) — 2022-04-23

## README

# wumpa.ts

### Kurulum
```js
npm install wumpa.db
 ```

### Javascript
```js
let { Database } = require("wumpa.ts");

let db = new Database("key");

db.editOrCreate("key", "value");

db.deleteKeyValue("key");

db.getAllValues();

db.getValues("key");

db.addValues("key", "value");

db.subTractValues("key", "value");
```

Typescript
```js
import { Database } from "wumpa.ts";

let db = new Database("key");

db.editOrCreate("key", "value");

db.deleteKeyValue("key");

db.getAllValues();

db.getValues("key");

db.addValues("key", "value");

db.subTractValues("key", "value");
```

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