From bfab1f6baae946ff16102636ace49dd79afbc466 Mon Sep 17 00:00:00 2001 From: Octavian Damiean Date: Sun, 8 Jul 2012 20:23:03 +0300 Subject: [PATCH] Formatted citations using block-quotes instead of a code block. --- ...e-js-and-mongodb-getting-started-with-mongojs.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/articles/node-js-and-mongodb-getting-started-with-mongojs.markdown b/articles/node-js-and-mongodb-getting-started-with-mongojs.markdown index c75f45c..110eaaa 100644 --- a/articles/node-js-and-mongodb-getting-started-with-mongojs.markdown +++ b/articles/node-js-and-mongodb-getting-started-with-mongojs.markdown @@ -11,13 +11,13 @@ a better experience to their users by build more capable, performant and scalabl So what is Node.js? - Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. - Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for - data-intensive real-time applications that run across distributed devices. +> Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications. +> Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient, perfect for +> data-intensive real-time applications that run across distributed devices. ..and what is MongoDB? - MongoDB is a scalable, high-performance, open source NoSQL database. +> MongoDB is a scalable, high-performance, open source NoSQL database. This post will cover the basics and get you started with your Node.js + MongoDB app. Make sure you have Node.js installed and MongoDB setup on your developer machine.