
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
@dataparty/api
Advanced tools
[](http://github.com/badges/stability-badges)[](https://github.com/datapartyjs/dataparty-api/blob/mas
decentralized cloud framework for the Web3.0 generation.
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:
rosbridge 2.0
protocol.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.
const Dataparty = require('@dataparty/api')
async function getUser(name) {
return (await local.find()
.type('user')
.where('name').equals(name)
.exec())[0]
}
async function main(){
const dbPath = (await fs.mkdtemp('/tmp/loki-party')) + '/loki.db'
debug('db location', dbPath)
local = new Dataparty.LokiParty({
path: dbPath,
model: MyServiceModel,
config: new Dataparty.Config.MemoryConfig()
})
await local.start()
let user = await getUser('tester')
if(!user){
debug('creating document')
user = await local.createDocument('user', {name: 'tester', created: (new Date()).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'
await user.save()
console.log(user.data)
let userFind = await getUser('renamed-tester')
console.log(userFind)
console.log(dbPath)
await user.remove()
console.log(await getUser('renamed-tester'))
}
FAQs
[](http://github.com/badges/stability-badges)[](https://github.com/datapartyjs/dataparty-api/blob/mas
The npm package @dataparty/api receives a total of 14 weekly downloads. As such, @dataparty/api popularity was classified as not popular.
We found that @dataparty/api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.