1.0.68 • Published 1 year ago
krakenthing v1.0.68
kraken_thing
Main library for thing that includes all sub libraries
- kraken_schema
- kraken_html
- kraken_record
- kraken_data
- kraken_api
- kraken_db
Running tests
node --experimental-vm-modules node_modules/.bin/jestPublish
npm adduser
npx parcel build
npm publishHow to use
import { KrThing } from 'https://tactik8.github.io/kraken_thing_js/dist/main.js';
let t = new KrThing();Key concepts
Thing
Monitor changes (addEventListener)
eventType:
- all (all events)
- add
- delete
- replace
thing.addEventListener(eventType, callbackFn)Conditions: propertyValueSpecification
Filter
// Initialize new things
let things = new KrThings()
// Populate with 3 thing objects
let thing1 = new KrThing();
thing1.setProperty('name', 'bob1s')
var i = things.add(thing1, 'id1')
let thing2 = new KrThing();
thing2.setProperty('name', 'bob2s')
var i = things.add(thing2, 'id2')
let thing3 = new KrThing();
thing3.setProperty('name', 'bob3s')
var i = things.add(thing3, 'id3')
// Initialize KrPropertyValueSpecification
let t = new KrPropertyValueSpecification();
t.propertyID = 'name'
t.setEndsWith('3s')
// Filter (gives a new things object)
let thingsFiltered = things.filter([t])
console.log(thingsFiltered.items.length)1.0.68
1 year ago
1.0.67
2 years ago
1.0.66
2 years ago
1.0.65
2 years ago
1.0.64
2 years ago
1.0.63
2 years ago
1.0.62
2 years ago
1.0.61
2 years ago
1.0.60
2 years ago
1.0.59
2 years ago
1.0.58
2 years ago
1.0.57
2 years ago
1.0.56
2 years ago
1.0.55
2 years ago
1.0.54
2 years ago
1.0.53
2 years ago
1.0.52
2 years ago
1.0.51
2 years ago
1.0.50
2 years ago
1.0.49
2 years ago
1.0.48
2 years ago
1.0.47
2 years ago
1.0.46
2 years ago
1.0.45
2 years ago
1.0.44
2 years ago
1.0.43
2 years ago
1.0.42
2 years ago
1.0.41
2 years ago
1.0.40
2 years ago
1.0.39
2 years ago
1.0.38
2 years ago
1.0.37
2 years ago
1.0.36
2 years ago
1.0.35
2 years ago
1.0.34
2 years ago
1.0.33
2 years ago
1.0.32
2 years ago
1.0.31
2 years ago
1.0.30
2 years ago
1.0.29
2 years ago
1.0.19
2 years ago
1.0.18
2 years ago
1.0.17
2 years ago
1.0.16
2 years ago
1.0.15
2 years ago
1.0.14
2 years ago
1.0.13
2 years ago
1.0.12
2 years ago
1.0.11
2 years ago
1.0.10
2 years ago
1.0.9
2 years ago
1.0.8
2 years ago
1.0.7
2 years ago
1.0.6
2 years ago
1.0.5
2 years ago
1.0.4
2 years ago
1.0.3
2 years ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago