Skip to content

Instantly share code, notes, and snippets.

View matheusazzi's full-sized avatar

Matheus Azzi matheusazzi

View GitHub Profile
var application_root = __dirname,
express = require("express"),
path = require("path"),
mongoose = require('mongoose');
var app = express.createServer();
// database
mongoose.connect('mongodb://localhost/ecomm_database');