Programming Tips 💡
54.5K subscribers
65 photos
8 videos
30 files
338 links
Programming:
Tips 💡
Articles 📕
Resources 👾
Design Patterns 💎
Software Principles

🇳🇱 Contact & Ads: @MoienTajik
Download Telegram
LiteDB 📦

Embedded NoSQL database for .NET

An open source MongoDB-like database with zero configuration - mobile ready 📱

🔹🔸🔹🔸🔹

Features 💎 :

• Standalone database - LiteDB is serverless database delivered in a single DLL ( Less than 250KB )

• Fast & Lightweight - LiteDB is a simple and fast NoSQL database solution. 💨

• LINQ Support

• Fluent API for custom mapping

• Free 💸

🔹🔸🔹🔸🔹

Ideal for :
Mobile Apps
Desktop/local small applications
Application file format
Small web applications
One database per account/user data store

https://t.me/pgimg/15

[ Website ] : http://www.litedb.org/

#Database #LiteDB
@ProgrammingTip
PopSQL

Modern, collaborative SQL editor for your team. 🗂

🔹Collaborate in realtime, just like a Google Doc

🔹Share queries by URL, and organize them in folders

🔹Visualize your data automatically

🔹Works with many types of databases

https://t.me/pgimg/65

[ Website ] : popsql.io


#SQL #Database #Tools
@ProgrammingTip
LowDB is a small local JSON database for Node, Electron and the browser powered by Lodash.⚡️

Sample 💎 :

const low = require('lowdb')
const FileSync = require('lowdb/adapters/FileSync')

const adapter = new FileSync('db.json')
const db = low(adapter)

// Set some defaults (required if your JSON file is empty)
db.defaults({ posts: [], user: {}, count: 0 })
.write()

// Add a post
db.get('posts')
.push({ id: 1, title: 'lowdb is awesome'})
.write()

// Set a user using Lodash shorthand syntax
db.set('user.name', 'typicode')
.write()

// Increment count
db.update('count', n => n + 1)
.write()

Result 🔥:

{
"posts": [
{ "id": 1, "title": "lowdb is awesome"}
],
"user": {
"name": "typicode"
},
"count": 1
}



https://t.me/pgimg/194

[ GitHub ] : github.com/typicode/lowdb

〰️〰️〰️〰️〰️〰️
#JavaScript #Database
@ProgrammingTip