first commit

This commit is contained in:
Myk
2025-07-31 23:47:20 +03:00
commit 2186b278a0
5149 changed files with 537218 additions and 0 deletions

113
node_modules/lowdb/examples/README.md generated vendored Normal file
View File

@@ -0,0 +1,113 @@
# Examples
## CLI
```js
const low = require('lowdb')
const FileSync = require('lowdb/adapters/FileSync')
const adapter = new FileSync('db.json')
const db = low(adapter)
db.defaults({ posts: [] })
.write()
const result = db.get('posts')
.push({ name: process.argv[2] })
.write()
console.log(result)
```
```sh
$ node cli.js hello
# [ { title: 'hello' } ]
```
## Browser
```js
import low from 'lowdb'
import LocalStorage from 'lowdb/adapters/LocalStorage'
const adapter = new LocalStorage('db')
const db = low(adapter)
db.defaults({ posts: [] })
.write()
// Data is automatically saved to localStorage
db.get('posts')
.push({ title: 'lowdb' })
.write()
```
## Server
Please __note__ that if you're developing a local server and don't expect to get concurrent requests, it's often easier to use `file-sync` storage, which is the default.
But if you need to avoid blocking requests, you can do so by using `file-async` storage.
```js
const express = require('express')
const low = require('lowdb')
const FileAsync = require('lowdb/adapters/FileAsync')
// Create server
const app = express()
// Routes
// GET /posts/:id
app.get('/posts/:id', (req, res) => {
const post = db.get('posts')
.find({ id: req.params.id })
.value()
res.send(post)
})
// POST /posts
app.post('/posts', (req, res) => {
db.get('posts')
.push(req.body)
.last()
.assign({ id: Date.now() })
.write()
.then(post => res.send(post))
})
// Create database instance and start server
const adapter = new FileAsync('db.json')
low(adapter)
.then(db => {
db.defaults({ posts: [] })
.write()
})
.then(() => {
app.listen(3000, () => console.log('listening on port 3000')
})
```
## In-memory
With this adapter, calling `write` will do nothing. One use case for this adapter can be for tests.
```js
const fs = require('fs')
const low = require('low')
const FileSync = require('low/adapters/FileSync')
const Memory = require('low/adapters/Memory')
const db = low(
process.env.NODE_ENV === 'test'
? new Memory()
: new FileSync('db.json')
)
db.defaults({ posts: [] })
.write()
db.get('posts')
.push({ title: 'lowdb' })
.write()
```

58
node_modules/lowdb/examples/fp.md generated vendored Normal file
View File

@@ -0,0 +1,58 @@
# lowdb/lib/fp
__:warning: Experimental__
`lowdb/lib/fp` lets you use [`lodash/fp`](https://github.com/lodash/lodash/wiki/FP-Guide), [`Ramda`](https://github.com/ramda/ramda) or simple JavaScript functions with lowdb.
It can help reducing the size of your `bundle.js`
## Usage
```js
import low from 'lowdb/lib/fp'
import { concat, find, sortBy, take, random } from 'lodash/fp'
const db = low()
// Get posts
const defaultValue = []
const posts = db('posts', defaultValue)
// replace posts with a new array resulting from concat
// and persist database
posts.write(
concat({ title: 'lowdb is awesome', views: random(0, 5) })
)
// Find post by id
const post = posts(
find({ id: 1 })
)
// Find top 5 fives posts
const popular = posts([
sortBy('views'),
take(5)
])
```
## API
`lowdb/lib/fp` shares the same API as `lowdb` except for the two following methods.
__db(path, [defaultValue])([funcs])__
Returns a new array or object without modifying the database state.
```js
db('posts')(filter({ published: true }))
```
__db(path, [defaultValue]).write([funcs])__
Add `.write` when you want the result to be written back to `path`
```js
db('posts').write(concat(newPost))
db('user.name').write(set('typicode'))
```