Microsoft is urging people to download Firefox?
The world is going crazy these days. See what I am talking about.
The world is going crazy these days. See what I am talking about.
There is a big challenge to make MongoDB driver to work with Node.js, but here is an cool and working example to do that: Require: var mongodb = require(“mongodb”); //require node-mongodb-native var settings = require(‘./mconfig’); //for settings Connect to the admin database: var mongoserver = new mongodb.Server(settings.mongo_host, settings.mongo_port, {}); admindb = new mongodb.Db(‘admin’, mongoserver); Try … Read more
I will show you now, how to write a simple HTTPS JSON REST server using node.js components. Grab a beer, open your IDE and let’s start hacking. 0. Create certificates. If you don’t have valid https certificates, you can generate one for testing purposes. If you need one cool certificate, you can join cacert community. … Read more