Why Kuzzle ?
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.
- Persisted data: store your data and perform advanced searches on it.
- Real-time notifications: subscribe to fine-grained subsets of data.
- User Management: login, logout and security rules are no more a burden.
- Extensible: fit Kuzzle to your needs by leveraging the plugin system.
Installation
Quick install
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
Manual install
Check our complete installation guide on docs.kuzzle.io
Quick start with Kuzzle
Check the Getting started page on docs.kuzzle.io
NodeJS Sample
npm install kuzzle-sdk
const
Kuzzle = require('kuzzle-sdk'),
kuzzle = new Kuzzle('http://localhost:7512')
const filter = {
exists: {
field: 'message'
}
}
kuzzle
.collection('mycollection', 'myindex')
.subscribe(filter, function(error, result) {
console.log('message received from kuzzle:', result)
})
kuzzle
.collection('mycollection', 'myindex')
.createDocument(document)
Usefull links
Contributing to Kuzzle
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
- Follow us on twitter to get latest news
- Register to our monthly newsletter to get highlighed news
- Visit our blog to be informed about what we are doing
- Come chat with us on gitter
- Ask technical questions on stack overflow
Kuzzle Enterprise
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
License
Kuzzle is published under Apache 2 License.