🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

etna

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

etna

NoSQL in memory Database

latest
Source
npmnpm
Version
0.0.4-alpha
Version published
Maintainers
1
Created
Source

Build Status Coverage Open Collective backers and sponsors MIT License

WORK IN PROGRESS

EQL - Etna Query Language

Short Demonstration

SET &string name "Mitch"
# => OK.

SET &int age "24"
# => OK.

GET name
# => "Mitch"

GET age
# => 24

DELETE name
# => OK.

EXIST name
# => false

Types

Etna currently supports six basic types:

TypeAlias
&string&s
&int&i
&float&f
&bool&b
&null&n
&json&j

Commands

Etna currently supports four basic commands:

  • SET
  • GET
  • DELETE
  • EXIST

Query Language

Set a new value of type string and name as its key:

SET       &string   name  "John"
^         ^         ^      ^
command   type      key    value

Get the name value:

GET       name
^         ^
command   key

Delete the name value:

DELETE    name
^         ^
command   key

Check if the name key exists:

EXIST     name
^         ^
command   key

Keywords

database

FAQs

Package last updated on 10 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts