| server.js | |
| 'use strict';
 | |
| ¶ snowflakeSnowflake  | 
 | 
| Hapi will be the NodeJS server. I figure if WalMart, the largest retailer in the world, uses it, it will work for me. From the command line, run  Hapi is configured in this import | 
var HapiServer = require('./src/config/hapi');
 | 
| The mongodb will be used to store all the users | 
require('./src/database/mongodb');
 | 
| When hapi starts up, some info is displayed | 
HapiServer.start(function () {
  console.log('Server is running: ' + HapiServer.info.uri);
});
 |