0.1.4 • Published 5 years ago

arlang v0.1.4

Weekly downloads
3
License
MPL-2.0
Repository
github
Last release
5 years ago

arlang

Human-readable ARQL query language

Usage

arlang accepts a string and a few options. It returns a valid arql query.

const arlang = require('arlang')
const arweave = require('arweave').init({ host: 'arweave.net', protocol: 'https', port: 443 })

// let's make a query
const query = arlang('& (= someTag "someValue") (otherTag = "otherValue")', {lang: 'sym'})
// if you don't like the language, we have another one for you
const query2 = arlang('and(equals(someTag, "someValue"), equals(otherTag, "otherValue"))', {lang: 'fnc'})

// now let's run the query
const result = await arweave.arql(query) // doesn't matter which one we take, they're both equal

// worried about ARQL injections? we've got 'ya covered
const queryWithPlaceholdoers = arlang('and(equals(someTag, $1), equals(otherTag, $2))', {lang: 'sym', params: ['someValue', 'someTag']})

// there's also a short function to make things... shorter
const $arql = arlang.short('fnc')
const queryWplaceholders = $arql('and(equals(someTag, $1), equals(otherTag, $2))', 'someValue', 'someTag')
0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago