Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.
Kuzzle is a ready-to-use, on-premises backend that enables you to manage your persistent data and be notified in real-time on whatever happens to it. It also provides you with a flexible and powerful user-management system.
Kuzzle enables you to build modern web applications and complex IoT networks in no time.
The easyest way to setup a kuzzle server for Linux-like systems without prerequisites is to download and run our installation script:
$ sudo bash -c "$(curl http://get.kuzzle.io/)"
You can get detailed information about how to start kuzzle with docker on docs.kuzzle.io
Check our complete installation guide on docs.kuzzle.io
Check the Getting started page on docs.kuzzle.io
npm install kuzzle-sdk
const
Kuzzle = require('kuzzle-sdk'),
kuzzle = new Kuzzle('http://localhost:7512')
const filter = {
exists: {
field: 'message'
}
}
// Subscribe to data changes in an app
kuzzle
.collection('mycollection', 'myindex')
.subscribe(filter, function(error, result) {
// triggered each time a document is updated !
console.log('message received from kuzzle:', result)
})
// Creating a document from another app will notify all subscribers
kuzzle
.collection('mycollection', 'myindex')
.createDocument(document)
You're welcome to contribute to Kuzzle! Feel free to report issues, ask for features or even make pull requests !
Check our contributing documentation to know about our coding and pull requests rules
Kuzzle Enterprise is production-proof, and provides all the business-critical features your need for your business, as the scalability, the high-availability (multi-nodes), probes for BI, diagnostic tools & professional services,
Compare editions to learn more
Kuzzle is published under Apache 2 License.
FAQs
Kuzzle is an open-source solution that handles all the data management through a secured API, with a large choice of protocols.
The npm package kuzzle receives a total of 922 weekly downloads. As such, kuzzle popularity was classified as not popular.
We found that kuzzle demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.