# kaazing-command-center **Repository Path**: mirrors_kaazing/kaazing-command-center ## Basic Information - **Project Name**: kaazing-command-center - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #kaazing-command-center [![Build Status][build-status-image]][build-status] [build-status-image]: https://travis-ci.org/kaazing/kaazing-command-center.svg?branch=develop [build-status]: https://travis-ci.org/kaazing/kaazing-command-center ##Installing Dependencies Before you can build kaazing-command-center, you must install and configure the following dependencies on your machine: * [Git](http://git-scm.com/): The [Github Guide to Installing Git](https://help.github.com/articles/set-up-git) is a good source of information. * [Node.js](http://nodejs.org/): Node(npm) is used to install necessary dependencies. Depending on your system, you can install Node either from source or as a pre-packaged bundle. * [Bower](http://bower.io/): Bower is used to manage project dependancies. Install the bower command-line tool globally with: ```npm install -g bower``` * [Grunt](http://gruntjs.com/): Grunt is used to build the various client javascript files, generate the documentation and run tests. Install the grunt command-line tool globally with: ```npm install -g grunt-cli``` **Note**: These may need elevated privileges requiring the use of either sudo (for OSX, *nix, BSD etc) or running the command shell as an Administrator (for Windows) to install Grunt & Bower globally. ##Directory structure * files: package.json, GruntFile.js, bower.json, README.md, LICENSE * src: Source files * dist: Distribution directory will be generated which has generated gateway.client.javascript.js. ##Steps to build kaazing-command-center project Assumption: node, npm, grunt and bower Command Line Interface(CLI) should be installed. Following steps will build the project and generate files in the dist directory. * Clone the repo: ```git clone https://github.com/kaazing/kaazing-command-center.git``` * Go to the cloned directory: ```cd kaazing-command-center``` * Command to install all the project dependencies:``` npm install ``` * Command to install all the package dependencies:``` bower install ``` * Command to run configured tasks: ```grunt```