Blog

Author Archive


Filter Examples Using AngularJS
Posted on July 22, 2015 in AngularJS by Matt Jennings

<!DOCTYPE html>
<html>
<head lang=”en”>
<meta charset=”UTF-8″>
<title>Filters Example</title>
<script type=”text/javascript” src=”https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js”></script>

Read more


In AngularJS, Example of Using a Module, Controller, and the $scope Object
Posted on July 22, 2015 in AngularJS by Matt Jennings

<!DOCTYPE html>
<!–
‘<html ng-app=”myApp”>’ directive below ensures that the “myApp” Angular module can be
accessed in either an embedded JS or external …

Read more


CRUD (Create, Read, Update, Delete) with Modularized Node.js, MongooseJS, and MongoDB
Posted on July 22, 2015 in MongoDB, Node.js by Matt Jennings

body-parser
ejs
express
mongoose

{
“name”: “modularized-mongoose-dashboard”,
“version”: “0.0.1”,
“description”: “modularized mongoose dashboard using node.js”,
“license”: “MIT”,
“repository”: …

Read more


Using MongooseJS to Create Associations Among MongoDB Collections
Posted on July 21, 2015 in MongoDB, Node.js by Matt Jennings

Below is example code using MongooseJS, other Node.js modules, and a MongoDB database to …

Read more


Push Form Post Data, Including a Date, into a MongoDB Database Using the MongooseJS exec() Function
Posted on July 20, 2015 in MongoDB, Node.js by Matt Jennings

// Require path
var path = require(“path”);

// Requite express and create express app
var express = require(“express”);
var app = express();

// Require body-parse …

Read more