# easynodedatabase

> An easy database for node

Latest version **1.1.2** (published 2024-05-17) · MIT license · 0 weekly downloads

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

## Install

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

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.1.2 |
| Published | 2024-05-17 |
| First published | 2023-12-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 11.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Coolchickenguy |
| Maintainers | testurer99 |
| Keywords | database |

## Links

- npm: https://www.npmjs.com/package/easynodedatabase
- Repository: https://github.com/Coolchickenguy/Easy-node-database
- Homepage: https://github.com/Coolchickenguy/Easy-node-database#readme
- Issues: https://github.com/Coolchickenguy/Easy-node-database/issues
- npm.io page: https://npm.io/package/easynodedatabase

## Dependencies (1)

- [aes256](https://npm.io/package/aes256.md) ^1.1.0

## Recent versions

- 1.1.2 (latest) — 2024-05-17
- 1.1.1 — 2024-05-17
- 1.1.0 — 2024-03-17
- 1.0.9 — 2024-01-11
- 1.0.8 — 2024-01-06
- 1.0.6 — 2023-12-20
- 1.0.4 — 2023-12-20
- 1.0.3 — 2023-12-04
- 1.0.2 — 2023-12-02
- 1.0.1 — 2023-12-02
- 1.0.0 — 2023-12-02

## README

# Database for node
## A database that works


## Use:

**Get a databse and login**
***
```
var database = require("easynodedatabase");
var data = database.get("./databases/foodata").login("chicen", "bocker99");
console.log(data);
//Outputs content
```
**Edit a database**
***
```
var database = require("easynodedatabase");
var data = database.get("./databases/foodata").login("chicen", "bocker99");
data["foo"] = "bar";
//updates database
```
**Add account**
***
```
var database = require("easynodedatabase");
database.get("./databases/foodata").addacount("chicen", "bocker99");
```
**Create database**
```
var database = require("easynodedatabase");
database.new("foodata","./databases");
```
## License

MIT

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