PeakDB
  • Introduction
  • Quick Start
  • Change Log
  • Reference
    • Bitwise Permission Flags
    • Supported Node.js Versions
    • NPM
    • GitHub
  • Constructors
    • Server
    • Connection
    • Collection
  • Classes
    • Collection
      • createBackup
      • loadBackup
      • drop
    • DocumentBasedCollection
      • insert
      • find
      • filter
      • has
      • update
      • archive
      • unarchive
      • delete
    • KeyValueBasedCollection
      • set
      • get
      • push
      • remove
      • find
      • filter
      • has
      • increase
      • decrease
      • delete
Powered by GitBook
On this page
  • Bitwise Permission Flags
  • Supported Node.js Versions

Reference

Here are some documents that might be of use to you.

Bitwise Permission Flags

Name
Value
Description

READ

0x1 (1 << 0)

Allows the user to read.

WRITE

0x2 (1 << 1)

Allows the user to write.

UPDATE

0x4 (1 << 2)

Allows the user to update.

DELETE

0x8 (1 << 3)

Allows the user to delete.

Supported Node.js Versions

  • Node.js v12

  • Node.js v13

  • Node.js v14

  • Node.js v15

  • Node.js v16

PreviousChange LogNextServer

Last updated 1 year ago