Skip to content

MongoDB-like document database API made for minecraft bedrock (dont judge i just like using mongoose)

Notifications You must be signed in to change notification settings

Azalea-Essentials/PrismarineDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

repository-open-graph-template(3)(1)

About

PrismarineDB is a minecraft bedrock database designed to feel similar to something like mongoose. Instead of being a key-value database like most MCBE databases, it uses documents like what MongoDB does.

Usage

Creating a table

let table = prismarineDB.table("table")

Inserting a document

table.insertDocument({
  key1: "test"
})

Finding a document

  1. Find all documents matching a query
let document = table.findDocuments({
  key: "value"
})
  1. Find first document matching a query
let document = table.findFirst({
  key: "value"
})

Scripts using PrismarineDB

Note

This project is not in any way related to PrismarineJS. It just has a similar name

About

MongoDB-like document database API made for minecraft bedrock (dont judge i just like using mongoose)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published