# westdb

> Sqlite Türünde Yapılmış Database Modülü

Latest version **1.2.5** (published 2021-05-17) · MIT license · 0 weekly downloads

## Install

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

## 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.2.5 |
| Published | 2021-05-17 |
| First published | 2021-05-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | westdb |
| Maintainers | westdev |
| Keywords | sql, sqlite, database, db, west |

## Links

- npm: https://www.npmjs.com/package/westdb
- Repository: https://github.com/westdb/westdb
- Homepage: https://github.com/westdb/westdb#readme
- Issues: https://github.com/westdb/westdb/issues
- npm.io page: https://npm.io/package/westdb

## Dependencies (1)

- [quick.db](https://npm.io/package/quick.db.md) ^7.1.3

## 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.2.5 (latest) — 2021-05-17
- 1.2.2 — 2021-05-17
- 1.2.1 — 2021-05-17
- 1.2.0 — 2021-05-17
- 1.0.1 — 2021-05-16
- 1.0.0 — 2021-05-16

## README

![Image](https://img.shields.io/npm/v/westdb?color=%2351F9C0&label=westdb) 
![Image](https://img.shields.io/npm/dt/westdb.svg?color=%2351FC0&maxAge=3600) 
#
![Image](https://nodei.co/npm/westdb.png?downloads=true&downloadRank=true&stars=true)
<br>

## Yüklemek İçin
```npm
npm install westdb
```

<br>

## Nasıl Kullanılır? 💫

# JS
```js
const west = require("westdb");
const db = new west.Database();

// Set data
db.set("Hello", "World");

// Get data
db.get("Hello"); // World
db.fetch("Hello"); // World

// Delete data
db.delete("Hello");

db.get("Hello"); // undefined
db.has("Hello"); // false

db.set("age", 10);
db.add("age", 1); // 11
db.subtract("age", 9); // 2

db.set("array", [ "apple" ]);
db.push("array", "orange"); // [ "apple", "orange" ]

// Clear data
db.deleteAll();

// Get all the data
db.all();
```

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