decentralized cloud framework for the Web3.0 generation.
- Documentation - datapartyjs.github.io/dataparty-api
- NPM - npmjs.com/package/@dataparty/api
- Code - github.com/datapartyjs/dataparty-api
- Support - ko-fi/dataparty
Dataparty services are able to run on servers, edge devices, or even directly in the browser or app. This means users of dataparty based apps can frequently run their own backend from within an app. By building this peer-to-peer functionality directly into the database ORM, dataparty/api saves significant effort for app makers.
For many domains the exact performance characteristics of the database, communications and security matter a lot. All major systems are fairly pluggable so that additional drivers (db, comms etc) can be developed.
A dataparty app/service typically consists of these parts:
- Comms
- We support everything from WebRTC, Websockets, HTTP to BLE and i2p/tor.
- Config
- Persist configuration in a number of ways.
- Db
- Select the database that makes sense for you, see database selection
- Use one scheme across all db's
- Party
- The primary query interface. Abstracts the DBs into a common realtime-db interface. Partys can interact with local, remote and even peer-to-peer hosted DBs. Select the type of party that makes sense for you. See party selection
- Service
- RESTful endpoints and middleware, code once run everywhere. Expressjs style interface. Each endpoint can be run in its own sandbox, various types of isolation are supported and more are planned.
- Topics
- Streaming pub/sub that runs everywhere. Compatible with the ROS
rosbridge 2.0protocol.
- Streaming pub/sub that runs everywhere. Compatible with the ROS
| Database | Browser | Cordova | Electron | Embedded Linux | Node |
|---|---|---|---|---|---|
| Lokijs | y | y | y | NR* | NR* |
| Zangodb | y | y | y | P* | P* |
| Tingo | n | P* | y | y | y |
| Mongo | n | P* | y | y | y |
*NR - Not Recommended, but supported *P - Possibly. We're looking into it.
constDataparty=require('@dataparty/api')asyncfunctiongetUser(name){return(awaitlocal.find().type('user').where('name').equals(name).exec())[0]}asyncfunctionmain(){constdbPath=(awaitfs.mkdtemp('/tmp/loki-party'))+'/loki.db'debug('db location',dbPath)local=newDataparty.LokiParty({path: dbPath,model: MyServiceModel,config: newDataparty.Config.MemoryConfig()})awaitlocal.start()letuser=awaitgetUser('tester')if(!user){debug('creating document')user=awaitlocal.createDocument('user',{name: 'tester',created: (newDate()).toISOString()})}else{debug('loaded document')}console.log(user.data)user.on('update',(evt)=>{console.log('update')})user.on('value',(evt)=>{console.log('value')})user.data.name='renamed-tester'awaituser.save()console.log(user.data)letuserFind=awaitgetUser('renamed-tester')console.log(userFind)console.log(dbPath)awaituser.remove()console.log(awaitgetUser('renamed-tester'))}