Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aksakalli/sandrarest
Cassandra Manager REST API & Web UI
https://github.com/aksakalli/sandrarest
administration cassandra rest
Last synced: 3 months ago
JSON representation
Cassandra Manager REST API & Web UI
- Host: GitHub
- URL: https://github.com/aksakalli/sandrarest
- Owner: aksakalli
- License: mit
- Created: 2015-02-22T23:13:35.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-29T12:45:10.000Z (about 7 years ago)
- Last Synced: 2024-05-01T09:46:46.551Z (9 months ago)
- Topics: administration, cassandra, rest
- Language: JavaScript
- Homepage:
- Size: 4.08 MB
- Stars: 25
- Watchers: 6
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sandraREST
![screen shot](docs/img/screenshot.png)
sandraREST is a Cassandra Manager REST API and Web UI.
## Features
* Present database
* Run a CQL query
* Drop/Update/Create Keyspace
* Drop Column Family
* Drop/Update/Create Column
* List data of Column Family
* Download query result as CSV## Getting Started
As the project required use of multiple external dependencies
for both client and server side, bower and npm are used to
manage those respectively.Cassandra client configuration is stored under root folder in
`cassandra_config.json`. It is possible to configure contact
points and many other client options.running the source code:
```bash
$ npm install
$ bower install
$ npm start
```## Architecture
Main advantage of a REST API is that such organization of
a clientserver communication allows single server to support
numerous client applications through the unified interfaces.![interface guide](docs/img/overview.png)
In the particular case, server with REST API was developed on
the node.js. Client side is single page webapplication based
on angular.js framework that served on 'public' folder as static
and only relies on REST API for access to the database data.[REST Endpoints](docs/rest_endpoints.md)
## License
Released under [the MIT license](LICENSE).