jackhq / node-cloudq

Cloudq Server in Node

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-cloudq Server

This is a cloudq server written in CoffeeScript and runs on NodeJs.

See cloudq_protocol for details.

Technology Stack

  • NodeJs
  • CoffeeScript
  • ExpressJs
  • MongoSkin
  • MongoDb

Under Heavy Development (Getting Closer)

Requirements

Install

Currently, there is no installation instructions, but you should be able to clone and run locally using:

# run mongodb server
mongod

# install dependencies
npm install .

# run - compiles on the fly!
coffee app.coffee

# or

node app.js

Test

npm install jasmine-node
cake spec

Build Certificates

openssl genrsa -out  privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem

License

See LICENSE

About

Cloudq Server in Node

License:MIT License


Languages

Language:CoffeeScript 98.2%Language:JavaScript 1.8%