Schemas in MongoDB with Node.js
Many language drivers include libraries (either native or third party) that help you create schemas. Let’s take a look at one NoSQL database in particular, MongoDB, and a server-side system called...
View ArticlePub/sub with MongoDB
There are plenty of existing messaging systems out there (Redis, AMQP, ØMQ, etc.) but I’ve recently found MongoDB to be a very compelling alternative, especially if you’re already running MongoDB...
View ArticleManual Dependency Injection in JavaScript
Dependency injection (DI) is a pattern used to write modular, loosely coupled components. Specifically, you inject specific dependencies into a module at run-time rather then loading them in a...
View ArticleWhat 10gen nailed with MongoDB by Calvin French-Owen
When my co-founders and I first started on our startup a little over a year ago, we asked other startups about what to database they were using. Nine out of ten people all had the same response: “Just...
View Articlejavascript – how to query in mongodb?
You need to use the dot notation to reach into nested objectsSee it on Scoop.it, via mongodb-node
View ArticleMongoose and MongoHQ
A while ago I wrote a post about how to hook up node.js with the MongoHQ database hosting service. I still love MongoHQ, but my mongo wrapper around the node mongodb native driver sucked! I recently...
View ArticleGeospatial Queries with MongoDB and Node.js
In one of the new features I was developing I wanted to use geolocation on my searchs.See it on Scoop.it, via mongodb-node
View ArticlePassword Authentication with Mongoose and bcrypt
This post is Part 1 of a series on implementing username/password authentication for your Mongoose user models. In this first installment, we will discuss how to implement one-way encryption of user...
View ArticleMongoDB Monitoring Service (MMS)
nodejs-code's insight:MongoDB Monitoring Service (MMS) is a free cloud-based service provided by 10gen for monitoring MongoDB deployments in real time. MMS features charts, custom dashboards and...
View ArticleAmazon Web Services Blog: Modulus - Scalable Hosting of Node.js Apps With...
Charlie from Modulus wrote in to tell me that their new platform is now available, and that it runs on AWS. Modulus was designed to let you build and host Node.js applications in a scalable fashion....
View ArticleWinginx - Local web server for PHP5, MySQL, MongoDB, Node.js developers
Node.js works as standalone server. Together with nginx, it's a perfect duo!Package Manager NPM is included.Popular Express.js web framework and Jade template engine.Debug with Node-Inspector.Database...
View ArticleBuilding Web Apps with MongoDB, Node.js and Angular.js
I became an iPhone developer the moment I realized that the iPhone is not just a pretty and expensive phone; but rather that it is actually a networked Unix machine that fits in your pocket. See it on...
View ArticleCached sequential unique identifiers with Node.js and MongoDB
Acquiring sequential id with MongoDB is simple, as it support $inc command for atomic sequence increment. However, naive implementation requires hit to database every single time id is required, and...
View ArticleTodosMVC with Backbone.js, Node.js and MongoDB
This demo was written to illustrate how a server-side JavaScript solution could be applied to the TodosMVC application. I used Underscore.js, Backbone.js, Node.js, Express, Jade, Stylus, Mongoose and...
View ArticleNode.js and MongoDB - Getting started with MongoJS - How To Node - NodeJS
It won't be an exaggeration if one claims that in the past few months Node.js and MongoDB have literally taken the software and web industries by storm.See it on Scoop.it, via mongodb-node
View ArticleBlog Rolling with MongoDB, Node.js and Coffeescript
This morning I woke up with a lingering thought on my mind that was left over from recent conversations. In the technical community we often get so invested in our work that rather than talk about the...
View ArticleNode.Js server monitoring, part 2
Last time we mentioned two fundamental principles while monitoring any object: 1. The monitor should collect as much important information as possible that will allow to accurately evaluate the health...
View ArticleHttp Interface - MongoDB
MongoDB provides a simple http interface listing information of interest to administrators. This interface may be accessed at the port with numeric value 1000 more than the configured mongod port; the...
View ArticleNode.js + MongoDB = Love
Node.js with the popular document-oriented MongoDB make for a deeply powerful and robust application platform. Or in other words, they rock. See it on Scoop.it, via mongodb-node
View ArticleSimple MongoDb example for Nodejs
In this example we will see the interactivity between MongoDB and Nodejs. We will create a “Post It” application in Nodejs and save the data in MongoDb.See it on Scoop.it, via mongodb-node
View Article