Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
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.
If you are running Docker and just want to get your own Kuzzle running, you can use the provided docker-compose file.
Prerequisites:
From Kuzzle's build repo:
$ sudo sysctl -w vm.max_map_count=262144
$ wget http://kuzzle.io/docker-compose.yml
$ docker-compose up
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 an other 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 881 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
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.