#Node - Testing with Mocha
http://visionmedia.github.com/mocha/
##Mocha
npm install mocha -g
Mocha looks for something called test or a directory called test
#Node - Testing with Mocha
http://visionmedia.github.com/mocha/
##Mocha
npm install mocha -g
Mocha looks for something called test or a directory called test
#Nginx Basics for Ubuntu
Please see http://wiki.nginx.org/Main for more information. See http://arstechnica.com/gadgets/2012/11/how-to-set-up-a-safe-and-secure-web-server/ for a tutorial on how to install Nginx.
##Installation To install, you can install the version which is in the standard Ubuntu repositories but it is normally quite old and will not have the latest security patches. The best way is to update the repositories first:
apt-get update
apt-get install python-software-properties
apt-get upgrade
#Node - Memcached Basics
Memcached is an in memory key-value store.
Installing Memcached
apt-get install memcached
To check the version
#Node - Installing and Compiling Node.js
##Simple Install Ubuntu
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
##Compile and Install
#Node - Error Handling
##Uncaught Errors
var http = require('http');
http.createServer(function() {
throw new Error('This will be uncaught');
}).listen(3000);
#JavaScript - Dictionary
This allows you to store and lookup dictionary name value pairs
###Construction
var Dictionary = function Dictionary(startValues) {
this.data = startValues || {};
}
#JavaScript - Regular Expressions (Regex)
Regular expressions are a language for describing patterns in string data. It is available in many languages including JavaScript.
Regular expressions are denoted by slashed (/) instead of quotes. ie /Hello/. Also Regular expressions are objects in JavaScript and have a number of methods including test which returns true or false if the pattern is found.
###Search Search return the index of the start of the text (like IndexOf), if it is found. Remember, the first location (ie h) is 0. An result of -1 indicates that the Regex was not found.
#Linux - Log File Monitoring
Logwatch is a really useful tool which normally runs as a cron
job which mails a summary of the log files to root. It shows a summary of software installed, repeated authentication failures from programs such as sshd and su.
For example running:
logwatch --detail med --range Today --format text --output stdout
#Linux - SSH (Secure SHell) Basics ssh is a secure mechanism to interact with a computer remotely.
##Logging on ssh allows a user to log in remotely to a server with a ssh server running (ie openSSHServer). For example:
ssh [email protected]
or, using a domain name like:
#MongoDB - Basics
##Installation The Debian package management tool (i.e. dpkg and apt) ensure package consistency and authenticity by requiring that distributors sign packages with GPG keys. Issue the following command to import the 10gen public GPG Key:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
Create a /etc/apt/sources.list.d/10gen.list file using the following command.
echo 'deb http://downloads-distro.mongodb.org/repo/debian-sysvinit dist 10gen' | sudo tee /etc/apt/sources.list.d/10gen.list