Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Jan 27, 2014
1 parent 665ad3b commit 088e2d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -32,7 +32,7 @@ Iridium is available using *npm*, which means you can install it locally using `

We make use of the [Semantic Versioning](http://semver.org/) guidelines for our versioning system, as such we highly recommend you stick to a single major version of Iridium when developing an application. This can easily be handled through your *package.json* file by doing the following.

```js
```javascript
{
// ...
"dependencies": {
Expand All @@ -42,7 +42,7 @@ We make use of the [Semantic Versioning](http://semver.org/) guidelines for our
```

## Example
```js
```javascript
var iridium = require('iridium');

var database = new iridium({
Expand Down Expand Up @@ -109,7 +109,7 @@ The Iridium core (that sounds WAY cooler than I intended when I came up with the

When using Iridium, you are required to instantiate a core with a settings object which describes the database server you want to connect to. This is done by calling the core's constructor and passing an object similar to the following.

```js
```javascript
{
host: 'localhost', // Optional
port: 27018, // Optional
Expand Down

0 comments on commit 088e2d5

Please sign in to comment.