Table of Contents
This is a Typescript client for Tile38 that allows for a type-safe interaction with the worlds fastest in-memory geodatabase Tile38.
- fully typed
- lazy client
- optional build-in leader/follower logic
- easy to use and integrate
- no external dependencies other than redis
- build in auto-pagination
"node": ">=20.x"
"ioredis" ">=5.0.0"
yarn add @iwpnd/tile38-ts
import { Tile38 } from '@iwpnd/tile38-ts';
const tile38 = new Tile38('leader:9851');
When it comes to replication, Tile38 follows a leader-follower model. The leader receives all commands that SET
data, a follower on the other hand is read-only
and can only query data. For more on replication in Tile38 refer to the official documentation.
This client is not meant to setup a replication, because this should happen in your infrastructure. But it helps you to specifically execute commands on leader or follower. This way you can make sure that the leader always has enough resources to execute SET
s and fire geofence
events on webhooks
.
For now we allow for one follower URI
to bet set alongside the leader URI
.
const tile38 = new Tile38('leader:9851', 'follower:9851');
Once the client is instantiated with a follower, commands can be explicitly send
to the follower, but adding .follower()
to your command chaining.
await tile38.follower().get('fleet', 'truck1').asObjects();
We expose ioredis
RedisOptions.
new Tile38(
'leader:9851',
'follower:9851',
// e.g. to set a retry strategy
{
retryStrategy: (times) => {
return Math.min(times * 50, 2000);
},
}
);
We expose ioredis
Events.
new Tile38()
.on('connect', () => console.log('connected'))
.on('error', console.error);
Tile38 has hidden limits set for the amount of objects that can be returned in one request. For most queries/searches this limit is set to 100
. This client gives you the option to either paginate the results yourself by add .cursor()
and .limit()
to your queries, or it abstracts pagination away from the user by adding .all()
.
Let's say your fleet
in Berlin
extends 100 vehicles, then
await tile38.within('fleet').get('cities', 'Berlin').asObjects();
will only return 100 vehicle objects. Now you can either get the rest by setting the limit to the amount of vehicles you have in the city and get them all.
await tile38.within('fleet').limit(10000).get('cities', 'Berlin').asObjects();
Or, you can paginate the results in multiple concurrent requests to fit your requirements.
await tile38
.within('fleet')
.cursor(0)
.limit(100)
.get('cities', 'Berlin')
.asObjects();
await tile38
.within('fleet')
.cursor(100)
.limit(100)
.get('cities', 'Berlin')
.asObjects();
await tile38
.within('fleet')
.cursor(200)
.limit(100)
.get('cities', 'Berlin')
.asObjects();
Or, you use .all()
to get all objects with a concurrency of 1 and a limit of 100:
await tile38
.follower()
.within('fleet')
.get('cities', 'Berlin')
.all()
.asObjects();
Set the value of an id. If a value is already associated to that key/id, it'll be overwritten.
await tile38
.set('fleet', 'truck1')
.fields({ maxSpeed: 90, milage: 90000 })
.point(33.5123, -112.2693)
.exec();
await tile38.set('fleet', 'truck1:driver').string('John Denton').exec();
Options
.fields() |
Optional additional fields. MUST BE numerical |
.ex(value) |
Set the specified expire time, in seconds. |
.nx() |
Only set the object if it does not already exist. |
.xx() |
Only set the object if it already exist. |
Input
.point(lat, lon) |
Set a simple point in latitude, longitude |
.bounds(minlat, minlon, maxlat, maxlon) |
Set as minimum bounding rectangle |
.object(feature) |
Set as feature |
.hash(geohash) |
Set as geohash |
.string(value) |
Set as string. To retrieve string values you can use .get() , scan() or .search() |
Set the value for one or more fields of an object. Fields must be double precision floating points. Returns the integer count of how many fields changed their values.
await tile38.fSet('fleet', 'truck1', { maxSpeed: 90, milage: 90000 });
Validate if field exists on id.
await tile38
.set('fleet', 'truck1')
.fields({ weight: 9001 })
.point(33.5123, -112.2693)
.exec();
let response = await tile38.fexists('fleet', 'truck1', 'weight');
console.log(response.exists);
// > true
response = await tile38.fexists('fleet', 'truck1', 'milage');
console.log(response.exists);
// > false
Options
command | description |
---|---|
.xx() |
FSET returns error if fields are set on non-existing ids. xx() options changes this behaviour and instead returns 0 if id does not exist. If key does not exist FSET still returns error |
Get the object of an id.
await tile38.get('fleet', 'truck1').asObject();
Get the object as string if set as string
await tile38.set('fleet', 'truck1:driver').string('John').exec();
await tile38.get('fleet', 'truck1').asString();
Options
command | description |
---|---|
.withFields() |
will also return the fields that belong to the object. Field values that are equal to zero are omitted. |
Output
command | description |
---|---|
.asObject() |
(default) get as object |
.asBounds() |
get as minimum bounding rectangle |
.asHash(precision) |
get as hash |
.asPoint() |
get as point |
.asString() |
get as string |
Validate id exists.
await tile38.set('fleet', 'truck1').point(33.5123, -112.2693).exec();
let response = await tile38.exists('fleet', 'truck1');
console.log(response.exists);
// > true
response = await tile38.exists('fleet', 'truck2');
console.log(response.exists);
// > false
Remove a specific object by key and id.
await tile38.del('fleet', 'truck1');
Remove objects that match a given pattern.
await tile38.pDel('fleet', 'truck*');
Remove all objects in a given key.
await tile38.drop('fleet');
Get the minimum bounding rectangle for all objects in a given key
await tile38.bounds('fleet');
Set an expiration/time to live in seconds of an object.
await tile38.expire('fleet', 'truck1', 10);
Get the expiration/time to live in seconds of an object.
await tile38.ttl('fleet', 'truck1', 10);
Remove an existing expiration/time to live of an object.
await tile38.persist('fleet', 'truck1');
Get all keys matching a glob-style-pattern. Pattern defaults to '*'
await tile38.keys();
Return stats for one or more keys.
The returned stats
array contains one or more entries, depending on the number of keys in the request.
await tile38.stats('fleet1', 'fleet2');
Returns
stat | description |
---|---|
in_memory_size |
estimated memory size in bytes |
num_objects |
objects in the given key |
num_points |
number of geographical objects in the given key |
Set a value in a JSON document. JGET, JSET, and JDEL allow for working with JSON strings
await tile38.jSet('user', 901, 'name', 'Tom');
await tile38.jGet('user', 901);
> {'name': 'Tom'}
await tile38.jSet('user', 901, 'name.first', 'Tom');
await tile38.jSet('user', 901, 'name.first', 'Anderson');
await tile38.jGet('user', 901);
> {'name': { 'first': 'Tom', 'last': 'Anderson' }}
await tile38.jDel('user', 901, 'name.last');
await tile38.jGet('user', 901);
> {'name': { 'first': 'Tom' }}
Renames a collection key
to newKey
.
Options
command | description |
---|---|
.nx() |
Default: false. Changes behavior on how renaming acts if newKey already exists |
If the newKey
already exists it will be deleted prior to renaming.
await tile38.rename('fleet', 'newFleet', false);
If the newKey
already exists it will do nothing.
await tile38.rename('fleet', 'newFleet', true);
Searches are Tile38 bread and butter. They are what make Tile38 a ultra-fast, serious and cheap alternative to PostGIS for a lot of use-cases.
WITHIN
searches a key for objects that are fully contained within a given bounding area.
await tile38.within('fleet').bounds(33.462, -112.268, 33.491, -112.245);
>{"ok":true,"objects":[{"id":"1","object":{"type":"Feature","geometry":{"type":"Point","coordinates":[-112.2693, 33.5123]},"properties":{}}}],"count":1,"cursor":1,"elapsed":"72.527µs"}
await tile38.within('fleet').noFields().asCount()
> {"ok":true,"count":205,"cursor":0,"elapsed":"2.078168ms"}
await tile38.within('fleet').get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38.within('fleet').buffer(100).get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.within('fleet')
.where('weight', 1000, 1200)
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.within('fleet')
.whereIn('weight', [1000, 1001, 1002])
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.within('fleet')
.whereExpr("weight == 1000")
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
Options
command | description |
---|---|
.cursor(value?) |
used to iterate through your search results. Defaults to 0 if not set explicitly |
.limit(value?) |
limit the number of returned objects. Defaults to 100 if not set explicitly |
.noFields() |
if not set and one of the objects in the key has fields attached, fields will be returned. Use this to suppress this behavior and don't return fields. |
.match(pattern?) |
Match can be used to filtered objects considered in the search with a glob pattern. .match('truck*') e.g. will only consider ids that start with truck within your key. |
.sparse(value) |
caution seems bugged since Tile38 1.22.6. Accepts values between 1 and 8. Can be used to distribute the results of a search evenly across the requested area. |
.buffer(value) |
Apply a buffer around area formats to increase the search area by x meters |
.where(fieldname, min value, max value) |
filter output by fieldname and values. |
.wherein(fieldname, values) |
filter output by fieldname and values. Returns if field value in list of values. |
.whereExpr(expr) |
filter output with filter-expression. |
Outputs
command | description |
---|---|
.asObjects() |
return as array of objects |
.asBounds() |
return as array of minimum bounding rectangles: {"id": string,"bounds":{"sw":{"lat": number,"lon": number},"ne":{"lat": number,"lon": number}}} |
.asCount() |
returns a count of the objects in the search |
.asHashes(precision) |
returns an array of {"id": string,"hash": string} |
.asIds() |
returns an array of ids |
.asPoints() |
returns objects as points: {"id": string,"point":{"lat": number,"lon": number} . If the searched key is a collection of Polygon objects, the returned points are the centroids. |
Query
command | description |
---|---|
.get(key, id) |
Search a given stored item in a collection. |
.circle(lat, lon, radius) |
Search a given circle of latitude, longitude and radius. |
.bounds(minLat, minLon, maxLat, maxLon) |
Search a given bounding box. |
.hash(value) |
Search a given geohash. |
.quadkey(value) |
Search a given quadkey |
.tile(x, y, z) |
Search a given tile |
.object(value) |
Search a given GeoJSON polygon feature. |
Intersects searches a key for objects that are fully contained within a given bounding area, but also returns those that intersect the requested area.
When used to search a collection of keys consisting of Point
objects (e.g. vehicle movement data) it works like a .within()
search as Points
cannot intersect.
When used to search a collection of keys consisting of Polygon
or LineString
it also returns objects, that only partly overlap the requested area.
await tile38.intersects('warehouses').hash('u33d').asObjects();
await tile38.intersects('fleet').get('warehouses', 'Berlin').asIds();
> {"ok":true,"ids":["truck1"],"count":1,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.intersects('fleet')
.where('weight', 1000, 1200)
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.intersects('fleet')
.whereIn('weight', [1000, 1001, 1002])
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.intersects('fleet')
.whereExpr("weight == 1000")
.get('warehouses', 'Berlin').asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
Options
command | description |
---|---|
.clip() |
Tells Tile38 to clip returned objects at the bounding box of the requested area. Works with .bounds() , .hash() , .tile() and .quadkey() |
.cursor(value?) |
used to iterate through your search results. Defaults to 0 if not set explicitly |
.limit(value?) |
limit the number of returned objects. Defaults to 100 if not set explicitly |
.noFields() |
if not set and one of the objects in the key has fields attached, fields will be returned. Use this to suppress this behavior and don't return fields. |
.match(pattern?) |
Match can be used to filtered objects considered in the search with a glob pattern. .match('warehouse*') e.g. will only consider ids that start with warehouse within your key. |
.sparse(value) |
caution seems bugged since Tile38 1.22.6. Accepts values between 1 and 8. Can be used to distribute the results of a search evenly across the requested area. |
.buffer(value) |
Apply a buffer around area formats to increase the search area by x meters |
.where(fieldname, min value, max value) |
filter output by fieldname and values. |
.wherein(fieldname, values) |
filter output by fieldname and values. Returns if field value in list of values. |
.whereExpr(expr) |
filter output with filter-expression. |
Outputs
command | description |
---|---|
.asObjects() |
return as array of objects |
.asBounds() |
return as array of minimum bounding rectangles: {"id": string,"bounds":{"sw":{"lat": number,"lon": number},"ne":{"lat": number,"lon": number}}} |
.asCount() |
returns a count of the objects in the search |
.asHashes(precision) |
returns an array of {"id": string,"hash": string} |
.asIds() |
returns an array of ids |
.asPoints() |
returns objects as points: {"id": string,"point":{"lat": number,"lon": number} . If the searched key is a collection of Polygon objects, the returned points are the centroids. |
Query
command | description |
---|---|
.get(key, id) |
Search a given stored item in a collection. |
.circle(lat, lon, radius) |
Search a given circle of latitude, longitude and radius. |
.bounds(minLat, minLon, maxLat, maxLon) |
Search a given bounding box. |
.hash(value) |
Search a given geohash. |
.quadkey(value) |
Search a given quadkey |
.tile(x, y, z) |
Search a given tile |
.object(value) |
Search a given GeoJSON polygon feature. |
await tile38.set('fleet', 'truck1').point(33.5123, -112.2693).exec();
await tile38.nearby('fleet').point(33.5124, -112.2694).asCount();
> {"ok":true,"count":1,"cursor":0,"elapsed":"42.8µs"}
await tile38.nearby('fleet').point(33.5124, -112.2694, 10).asCount();
// because truck1 is further away than 10m
> {"ok":true,"count":0,"cursor":0,"elapsed":"36µs"}
// asIds request
await tile38.nearby('fleet').point(33.5124, -112.2694).asIds();
> {"ok":true,"ids":['truck1'],"cursor":0,"elapsed":"36µs"}
// asIds with distance
await tile38.nearby('fleet').distance().point(33.5124, -112.2694).asIds();
> {"ok":true,"ids":[{ "id":"truck1", "distance": 1 }],"cursor":0,"elapsed":"36µs"}
await tile38
.nearby('fleet')
.where('weight', 1000, 1200)
.point(33.5124, -112.2694, 10).asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.nearby('fleet')
.whereIn('weight', [1000, 1001, 1002])
.point(33.5124, -112.2694, 10).asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
await tile38
.nearby('fleet')
.whereExpr("weight == 1000")
.point(33.5124, -112.2694, 10).asCount();
> {"ok":true,"count":50,"cursor":0,"elapsed":"2.078168ms"}
Options
command | description |
---|---|
.distance() |
Returns the distance in meters to the object from the query .point() |
.cursor(value?) |
used to iterate through your search results. Defaults to 0 if not set explicitly |
.limit(value?) |
limit the number of returned objects. Defaults to 100 if not set explicitly |
.noFields() |
if not set and one of the objects in the key has fields attached, fields will be returned. Use this to suppress this behavior and don't return fields. |
.match(pattern?) |
Match can be used to filtered objects considered in the search with a glob pattern. .match('warehouse*') e.g. will only consider ids that start with warehouse within your key. |
.sparse(value) |
caution seems bugged since Tile38 1.22.6. Accepts values between 1 and 8. Can be used to distribute the results of a search evenly across the requested area. |
.where(fieldname, min value, max value) |
filter output by fieldname and values. |
.wherein(fieldname, values) |
filter output by fieldname and values. Returns if field value in list of values. |
.whereExpr(expr) |
filter output with filter-expression. |
Outputs
command | description |
---|---|
.asObjects() |
return as array of objects |
.asBounds() |
return as array of minimum bounding rectangles: {"id": string,"bounds":{"sw":{"lat": number,"lon": number},"ne":{"lat": number,"lon": number}}} |
.asCount() |
returns a count of the objects in the search |
.asHashes(precision) |
returns an array of {"id": string,"hash": string} |
.asIds() |
returns an array of ids |
.asPoints() |
returns objects as points: {"id": string,"point":{"lat": number,"lon": number} . If the searched key is a collection of Polygon objects, the returned points are the centroids. |
Query
command | description |
---|---|
.point(lat, lon, radius?) |
Search nearby a given of latitude, longitude. If radius is set, searches nearby the given radius. |
Incrementally iterate through a given collection key.
await tile38.scan('fleet');
await tile38.scan('fleet').where('foo', 1, 2);
await tile38.scan('fleet').wherein('foo', [1, 2]);
await tile38.scan('fleet').whereExpr('foo == 1');
Options
command | description |
---|---|
.asc() |
Values are returned in ascending order. Default if not set. |
.desc() |
Values are returned in descending order. |
.cursor(value?) |
used to iterate through your search results. Defaults to 0 if not set explicitly |
.limit(value?) |
limit the number of returned objects. Defaults to 100 if not set explicitly |
.noFields() |
if not set and one of the objects in the key has fields attached, fields will be returned. Use this to suppress this behavior and don't return fields. |
.match(pattern?) |
Match can be used to filtered objects considered in the search with a glob pattern. .match('warehouse*') e.g. will only consider ids that start with warehouse within your key. |
.where(fieldname, min value, max value) |
filter output by fieldname and values. |
.wherein(fieldname, values) |
filter output by fieldname and values. Returns if field value in list of values. |
.whereExpr(expr) |
filter output with filter-expression. |
Outputs
command | description |
---|---|
.asObjects() |
return as array of objects |
.asBounds() |
return as array of minimum bounding rectangles: {"id": string,"bounds":{"sw":{"lat": number,"lon": number},"ne":{"lat": number,"lon": number}}} |
.asCount() |
returns a count of the objects in the search |
.asHashes(precision) |
returns an array of {"id": string,"hash": string} |
.asIds() |
returns an array of ids |
.asPoints() |
returns objects as points: {"id": string,"point":{"lat": number,"lon": number} . If the searched key is a collection of Polygon objects, the returned points are the centroids. |
Used to iterate through a keys string values.
await tile38.set('fleet', 'truck1:driver').string('John').exec();
await tile38.search('fleet').match('J*').asStringObjects();
> {"ok":true,"objects":[{"id":"truck1:driver","object":"John"}],"count":1,"cursor":0,"elapsed":"59.9µs"}
Options
command | description |
---|---|
.asc() |
Values are returned in ascending order. Default if not set. |
.desc() |
Values are returned in descending order. |
.cursor(value?) |
used to iterate through your search results. Defaults to 0 if not set explicitly |
.limit(value?) |
limit the number of returned objects. Defaults to 100 if not set explicitly |
.noFields() |
if not set and one of the objects in the key has fields attached, fields will be returned. Use this to suppress this behavior and don't return fields. |
.match(pattern?) |
Match can be used to filtered objects considered in the search with a glob pattern. .match('J*') e.g. will only consider string values objects that have a string value starting with J |
.where(fieldname, min value, max value) |
filter output by fieldname and values. |
.wherein(fieldname, values) |
filter output by fieldname and values. Returns if field value in list of values. |
.whereExpr(expr) |
filter output with filter-expression. |
Outputs
command | description |
---|---|
.asStringObjects() |
return as array of objects |
.asCount() |
returns a count of the objects in the search |
.asIds() |
returns an array of ids |
While .configGet()
fetches the requested configuration, .configSet()
can be used to change the configuration.
Important, changes made with .set()
will only take affect after .configRewrite()
is used.
Options
command | description |
---|---|
requirepass |
Set a password and make server password-protected, if not set defaults to "" (no password required). |
leaderauth |
If leader is password-protected, followers have to authenticate before they are allowed to follow. Set leaderauth to password of the leader, prior to .follow() . |
protected-mode |
Tile38 only allows authenticated clients or connections from localhost . Defaults to: "yes" |
maxmemory |
Set max memory in bytes. Get max memory in bytes/kb/mb/gb. |
autogc |
Set auto garbage collection to time in seconds where server performs a garbage collection. Defaults to: 0 (no garbage collection) |
keep_alive |
Time server keeps client connections alive. Defaults to: 300 (seconds) |
await tile38.configGet('keepalive');
> {"ok":true,"properties":{"keepalive":"300"},"elapsed":"54.6µs"}
await tile38.configSet('keepalive', 400);
> {"ok":true,"elapsed":"36.9µs"}
await tile38.configRewrite();
> {"ok":true,"elapsed":"363µs"}
await tile38.configGet('keepalive');
> {"ok":true,"properties":{"keepalive":"400"},"elapsed":"33.8µs"}
Advanced options
Advanced configuration can not be set with commands, but has to be set in a config
file in your data directory. Options above, as well as advanced options can be set and are loaded on start-up.
command | description |
---|---|
follow_host |
URI of Leader to follow |
follow_port |
PORT of Leader to follow |
follow_pos |
? |
follow_id |
ID of Leader |
server_id |
Server ID of the current instance |
read_only |
Make Tile38 read-only |
Delete all keys and hooks.
await tile38.flushDb();
Instructs the server to perform a garbage collection.
await tile38.gc();
Sets Tile38 into read-only mode. Commands such as.set()
and .del()
will fail.
await tile38.readOnly(true);
Get Tile38 statistics. Can optionally be extended with extended=true
.
await tile38.server();
// extended
await tile38.server(true);
Get Tile38 statistics. Similar to SERVER
but with different properties.
await tile38.info();
A geofence is a virtual boundary that can detect when an object enters or exits the area. This boundary can be a radius or any search area format, such as a bounding box, GeoJSON object, etc. Tile38 can turn any standard search into a geofence monitor by adding the FENCE keyword to the search.
Geofence events can be:
inside
(object in specified area),outside
(object outside specified area),enter
(object enters specified area),exit
(object exits specified area),crosses
(object that was not in specified area, has enter/exit it).
Geofence events can be send on upon commands:
set
which sends an event when an object is.set()
del
which sends a last event when the object that resides in the geosearch is deleted via.del()
drop
which sends a message when the entire collection is dropped
Creates a webhook that points to a geosearch (NEARBY/WITHIN/INTERSECTS). Whenever a commands creates/deletes/drops an object that fulfills the geosearch, an event is send to the specified endpoint
.
// sends event to endpoint, when object in 'fleet'
// enters the area of a 500m radius around
// latitude 33.5123 and longitude -112.2693
await tile38
.setHook('warehouse', 'http://10.0.20.78/endpoint')
.nearby('fleet')
.point(33.5123, -112.2693, 500)
.exec();
await tile38.set('fleet', 'bus').point(33.5123001, -112.2693001).exec();
// event =
> {
"command": "set",
"group": "5c5203ccf5ec4e4f349fd038",
"detect": "inside",
"hook": "warehouse",
"key": "fleet",
"time": "2021-03-22T13:06:36.769273-07:00",
"id": "bus",
"meta": {},
"object": { "type": "Point", "coordinates": [-112.2693001, 33.5123001] }
}
Geosearch
command | description |
---|---|
.nearby(name, endpoint) |
|
.within(name, endpoint) |
|
.intersects(name, endpoint) |
Options
command | description |
---|---|
.meta(meta) |
Optional add additional meta information that are send in the geofence event. |
.ex(value) |
Optional TTL in seconds |
.commands(...which[]) |
Select on which command a hook should send an event. Defaults to: ['set', 'del', 'drop'] |
.detect(...what[]) |
Select what events should be detected. Defaults to: ['enter', 'exit', 'crosses', 'inside', 'outside'] |
Endpoints
endpoint | description |
---|---|
HTTP/HTTPS | http:// https:// send messages over HTTP/S. For options see link. |
gRPC | grpc:// send messages over gRPC. For options see link. |
Redis | redis:// send messages to Redis. For options see link |
Disque | disque:// send messages to Disque. For options see link. |
Kafka | kafka:// send messages to a Kafka topic. For options see link. |
AMQP | amqp:// send messages to RabbitMQ. For options see link. |
MQTT | mqtt:// send messages to an MQTT broker. For options see link. |
SQS | sqs:// send messages to an Amazon SQS queue. For options see link. |
NATS | nats:// send messages to a NATS topic. For options see link. |
Similar to setHook()
, but opens a PUB/SUB channel.
// Start a channel that sends event, when object in 'fleet'
// enters the area of a 500m radius around
// latitude 33.5123 and longitude -112.2693
await tile38
.setChan('warehouse')
.nearby('fleet')
.point(33.5123, -112.2693, 500)
.exec();
Now add a receiving channel and add an event handler.
const channel = await tile38.channel();
channel.on('message', (message) => console.log(message));
// also as of tile38 v1.33.1 followers can open a channel
const followerChannel = await tile38.follower().channel();
followerChannel.on('message', (message) => console.log(message));
Now that channel can:
// be subscribed to
await channel.subscribe('warehouse');
// or pattern subscribed to
await channel.pSubscribe('ware*');
// also as of tile38 v1.33.1 followers can open a channel
await followerChannel.subscribe('warehouse');
// or pattern subscribed to
await followerChannel.pSubscribe('ware*');
Every set .set()
results in:
await tile38.set('fleet', 'bus').point(33.5123001, -112.2693001).exec();
// event =
> {
"command": "set",
"group": "5c5203ccf5ec4e4f349fd038",
"detect": "inside",
"hook": "warehouse",
"key": "fleet",
"time": "2021-03-22T13:06:36.769273-07:00",
"id": "bus",
"meta": {},
"object": { "type": "Point", "coordinates": [-112.2693001, 33.5123001] }
}
// to unsubscribed
await channel.unsubscribe();
// to delete
await tile38.delChan('warehouse');
// or pattern delete
await tile38.pDelChan('ware*');
Geosearch
command | description |
---|---|
.nearby(name) |
|
.within(name) |
|
.intersects(name) |
Options
coommand | description |
---|---|
.meta(meta) |
Optional addition meta information that a send in the geofence event. |
.ex(value) |
Optional TTL in seconds |
.commands(...which[]) |
Select on which command a hook should send an event. Defaults to: ['set', 'del', 'drop'] |
.detect(...what[]) |
Select what events should be detected. Defaults to: ['enter', 'exit', 'crosses', 'inside', 'outside'] |
For more information, please refer to:
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feat/amazing-feature
) - Commit your Changes (
git commit -m 'fix: add some amazing feature'
) - Push to the Branch (
git push origin feat/amazing-feature
) - Open a Pull Request
MIT
Vincent Priem - @vpriem
Benjamin Ramser - @iwpnd
Project Link: https://github.com/iwpnd/tile38-ts
Josh Baker - maintainer of Tile38