All Projects → thinkjones → meanterprise

thinkjones / meanterprise

Licence: MIT license
MEAN based single page application with common SPA enterprise application add-ons.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to meanterprise

express-mvc
A light-weight mvc pattern for express framework with minimum dependencies
Stars: ✭ 23 (+0%)
Mutual labels:  mean, passportjs
ng-in-the-enterprise
Examples of how Angular is being run in the enterprise world.
Stars: ✭ 14 (-39.13%)
Mutual labels:  enterprise
Online Travel Reservation
A replica of online travel booking site KAYAK(www.kayak.com) for cmpe-273. Visit ->
Stars: ✭ 37 (+60.87%)
Mutual labels:  passportjs
data-structures-algorithms-interviews
👨‍💻 Repo contains my solutions to coding interview problems on various platforms. Will later convert into a React based web app for personal revision.
Stars: ✭ 16 (-30.43%)
Mutual labels:  passportjs
angular2-node-fb-login
Demo application that shows how to enable Facebook login with Angular 2 on frontend and Node.js/Express on backend
Stars: ✭ 55 (+139.13%)
Mutual labels:  passportjs
nodeJS examples
Server, routing, db examples using NodeJS v6
Stars: ✭ 34 (+47.83%)
Mutual labels:  mean
aws-enterprise-naming-tagging-standard
AWS Tagging policy and naming convention for all resources created within any AWS accounts under the AWS Master Account.
Stars: ✭ 48 (+108.7%)
Mutual labels:  enterprise
Cloud-PAW-Management
Simplify PAW and SPA for the masses, unify the MS Internal, and public PAW specs, and expedite deployment to ~5min or less.
Stars: ✭ 45 (+95.65%)
Mutual labels:  enterprise
tenants
JustFix.nyc is a tool to document, organize, and take action in getting repairs made on your apartment.
Stars: ✭ 15 (-34.78%)
Mutual labels:  mean
chanyeong
👨‍💻 chanyeong's portfolio and blog webpage
Stars: ✭ 39 (+69.57%)
Mutual labels:  passportjs
passport-magic
Magic is a Passport.js strategy that enables passwordless authentication middleware for any Express.js based application.
Stars: ✭ 35 (+52.17%)
Mutual labels:  passportjs
cv4pve-api-php
Proxmox VE Client API for PHP
Stars: ✭ 45 (+95.65%)
Mutual labels:  enterprise
finger.farm
Finger.Farm Modern Finger Protocol Hosting... kind of a fingerd implementation in Node
Stars: ✭ 38 (+65.22%)
Mutual labels:  passportjs
saloon
An E2E test seeder for enterprise web applications
Stars: ✭ 30 (+30.43%)
Mutual labels:  enterprise
StickerApp
Sticker E-Commerce Demo App (Node.js, React, MongoDB)
Stars: ✭ 29 (+26.09%)
Mutual labels:  mean
typo3
The TYPO3 Core - Enterprise Content Management System. Synchronized mirror of https://review.typo3.org/q/project:Packages/TYPO3.CMS
Stars: ✭ 898 (+3804.35%)
Mutual labels:  enterprise
MEAN-stack-authentication
MEAN stack authentication boilerplate with Angular 5 and Angular Material
Stars: ✭ 29 (+26.09%)
Mutual labels:  mean
FluentERP
ERP mobile application for Android with a support for SAP-like T-codes!
Stars: ✭ 18 (-21.74%)
Mutual labels:  enterprise
python-sonarqube-api
Python wrapper for the SonarQube (Community Edition and Enterprise Edition) and SonarCloud API.
Stars: ✭ 107 (+365.22%)
Mutual labels:  enterprise
maturity-models
Maturity models for IT, Agile, DevOps, TOGAF, Six Sigma, P3M3, etc.
Stars: ✭ 157 (+582.61%)
Mutual labels:  enterprise

Meanterprise Build Status

This is a MEAN style application that builds off the typical Hello World seed templates by including common functionality present in many typical Enterprise applications.

  • M - MongoDB
  • E - ExpressJS - Server side application framework
  • A - AngularJS - Client side application framework
  • N - Node - Package manager

Additional Features:

  • Server Side Authentication with PassportJS
  • Client Side Route Security (Logical Security not Real Security)

Future Features:

  • Nested routing
  • Tidy CRUD Examples
  • Python and Java backends

Setup

Install Node and Npm

brew install node

Install and Setup Mongo

brew install mongodb

Install dependencies

npm install

bower install

Start the application

Start Mongo

mkdir /tmp/mongo
mongod --dbpath /tmp/mongo

Start Application

npm start

Navigate to home screen: http://localhost:3000

Enterprise App Features

Server Authentication Security

Implemented using PassportJS using only the passport-google authentication strategy at present.

Client Route Security

Client Side Security (CSS) is managed using a pattern inspired by the angular-client-side-auth repository. The short description of the CSA pattern is:

  1. Add access role to your routes:
 $routeProvider.when('/',
        {
            templateUrl:    'home',
            controller:     'HomeCtrl',
            access:         access.user
        });
  1. Create a security service

  2. Check security of routes as they are about to change (app.js):

angular.module('app').run(['$rootScope','$location','security', function($rootScope, $location, security) {
    // Get the current user when the application starts
    // (in case they are still logged in from a previous session)
    security.requestCurrentUser();

    $rootScope.$on("$routeChangeStart", function (event, next, current) {
        if (!security.authorize(next.access)) {
            $location.path('/');
        }
    });

}]);

Future Enterprise App Features

  • Server Endpoint Security
  • Python and Java backends

Testing

Unit and e2e Tests Example unit and e2e tests are added to the project. These illustrate how automatic testing can be incorporated into the default grunt default workflow. Simply run the project and any time a source or test file changes the tests will be re-run.

Continuous Integration CI


There is a .travis.yml file for CI at Travis-CI.com

License

The MIT License (MIT)

Copyright (c) 2013 Gene Conroy-Jones

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].