• Stars
    star
    648
  • Rank 68,006 (Top 2 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 11 years ago
  • Updated about 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Customer Manager AngularJS/BreezeJS Application.

Customer Manager with AngularJS

If youโ€™re new to AngularJS check out my AngularJS in 60-ish Minutes video tutorial or download the free eBook. Also check out The AngularJS Magazine for up-to-date information on using AngularJS to build Single Page Applications (SPAs).

Also check out my AngularJS JumpStart video course:

Customer Management App

This is the standard Customer Manager application. To view a version of the application that has custom routing and dynamic controller script loading visit https://github.com/DanWahlin/CustomerManager. This application demonstrates:

  • A complete application with read-only and editable data
  • Using AngularJS with $http in a factory to access a backend RESTful service
  • Using BreezeJS in a factory to access a backend RESTful Service
  • Techniques for showing multiple views of data (card view and list view)
  • Custom filters for filtering customer and product data
  • A custom directive to ensure unique values in a form for email
  • A custom directive that intercepts $http and jQuery XHR requests (in case either are used) and displays a loading dialog
  • A custom directive that handles highlighting menu items automatically based upon the path navigated to by the user
  • Form validation using AngularJS
  • Provides login and authentication functionality (currently client-side only - plan to add server-side part too which is absolutely required in a "real" app)

The factories can be switched by changing the app/customersApp/services/config useBreeze setting to true.

The AngularJS portion of the app is structured using the following folders:

Customer Management App Structure

A related example that ties into Azure Active Directory Services and Office 365/SharePoint can be found here.

Requirements:

If you're using Visual Studio and .NET:

The following is required to support the backend services:

  • Visual Studio 2015 Community (free version) - https://www.visualstudio.com/?WT.mc_id=m365-0000-dwahlin

  • ASP.NET MVC and Web API are used for the back-end services along with Entity Framework for database access (included if you have VS 2015 community installed with the LocalDB option selected)

To get started, double-click the CustomerManager.sln file located at the root of the CustomerManager repository. Once the solution loads press F5 to run the project.

Note: If you want to use Visual Studio 2013 that should work although you may have to change the connection string in web.config from "MSSqlLocalDB" to "v11.0" depending upon which version of LocalDB you have installed.

If you're using Node.js/Express/MongoDB

If you don't already have Node.js on your machine install it from http://nodejs.org. You'll also need to install MongoDB from http://www.mongodb.org if you don't have it already and get it configured and running using the instructions on their site.

In the CustomerManager directory execute 'npm install' to install Express, MongoDB and Mongoose (package.json).

Load MongoDB Sample Data Option 1:

Load data into MongoDB by performing the following steps:

  • Execute 'mongod' to start the MongoDB daemon
  • Navigate to the CustomerManager/server directory (the one that has initMongoData.js in it)
  • Execute 'mongo' to start the MongoDB shell
  • Enter the following in the mongo shell to load the data seed file:
  • use customermanager
  • load("initMongoData.js")

Load Sample Data Option 2:

Alternatively you can navigate to CustomerManager/server and double-click the initMongoData.bat (Windows) or initMongoData.sh (Mac/Linux) file to initialize MongoDB with the data.

The Windows script assumes that MongoDB is installed at c:\mongodb while the Linux/Mac script relies on the fact that you have the monogo executable in the path.

Start the Node/Express server:

  • Open a command prompt
  • Navigate to the CustomerManager directory
  • Run 'npm install' at the command prompt
  • Navigate to the CustomerManager/server directory
  • Run 'node server.js'

View the application at http://localhost:3000

Thanks to Tony Quinn for contributing the initial Node.js/MongoDB code!

E2E tests using Protractor:

E2E tests using Protractor for .NET, and Selenium's WebDriver wrapper for Angular

Tests are written with NUnit but feel free to change it. (Tests use http://localhost:58000/ so make sure IIS Express is running the app)

There are several ways to execute these tests:

Thanks to Bruno Baia for the contribution

More Repositories

1

Angular-JumpStart

Angular and TypeScript JumpStart example application
TypeScript
1,527
star
2

angular-architecture

Examples of Angular Architecture Concepts
TypeScript
786
star
3

CustomerManager

CustomerManager AngularJS/BreezeJS Application with a custom route provider.
JavaScript
709
star
4

Observable-Store

Observable Store provides a simple way to manage state in Angular, React, Vue.js and other front-end applications.
TypeScript
619
star
5

DockerAndKubernetesCourseCode

Course code for the Docker and Kubernetes course: https://codewithdan.com/products/docker-kubernetes
C#
350
star
6

Angular-RESTfulService

Example of Angular calling into a RESTful service
JavaScript
268
star
7

TypeScriptDemos

A set of TypeScript demos showing various features of the language.
HTML
233
star
8

Angular-Docker-Microservices

Example of serving an Angular app to the browser using nginx. App calls Node.js/MongoDB and ASP.NET Core/PostgreSQL microservices.
C#
213
star
9

AngularIn20TypeScript

Simple AngularJS Applications with TypeScript
JavaScript
203
star
10

CodeWithDanDockerServices

Demonstration of using Docker and/or Kubernetes to orchestrate multiple services
JavaScript
197
star
11

AspNetCorePostgreSQLDockerApp

ASP.NET Core with PostgreSQL Docker App Demo
C#
193
star
12

ES2015Samples

A set of ECMAScript 2015 examples as well as a Gulp file that converts them to ES5 using Babel.
JavaScript
180
star
13

Angular-NodeJS-MongoDB-CustomersService

Code for the Integrating Angular with Node.js RESTful Services Pluralsight course.
TypeScript
162
star
14

Angular-Core-Concepts

Provides a simple demo application covering Angular core concepts (components, services, modules, routing)
TypeScript
160
star
15

NodeExpressMongoDBDockerApp

Node.js with MongoDB Docker App Demo
CSS
152
star
16

Angular-BareBones

Angular and TypeScript Bare Bones Project
TypeScript
149
star
17

AngularOverlay

AngularJS directive used to automatically intercept XHR requests and show an overlay and message in a web page.
JavaScript
147
star
18

Angular-Forms

Angular/TypeScript template-driven and reactive forms example.
TypeScript
122
star
19

AngularCLI-ASPNET-Core-CustomersService

Example of integrating Angular with ASP.NET Core RESTful Services
C#
93
star
20

Docker-for-Web-Developers

Code from the Docker for Web Developers Course on Pluralsight - https://www.pluralsight.com/courses/docker-web-development
HTML
84
star
21

Angular-ASPNET-Core-Seed

An Angular and ASP.NET Core Seed Project to simplify getting started with the two technologies.
TypeScript
77
star
22

AngularTypeScript

An Angular and TypeScript demo app that integrates with Azure AD and Office 365 cloud services.
TypeScript
72
star
23

Angular-ASPNET-Core-CustomersService

Angular and ASP.NET Core RESTful Services
C#
62
star
24

Angular-WebSockets

Example of using Angular services and RxJS observables with a WebSockets Server
TypeScript
60
star
25

typescript-fundamentals

Sample code from the TypeScript Fundamentals course on Pluralsight.com
TypeScript
55
star
26

ES6-Modules-Starter

Simple ES6 Modules starter project that uses Gulp, Babel and SystemJS
JavaScript
46
star
27

MasteringJavaScriptCourseCode

Code for the Mastering JavaScript course.
JavaScript
45
star
28

AngularCLI-NodeJS-MongoDB-CustomersService

Code for the Integrating Angular with Node.js RESTful Services Pluralsight course.
JavaScript
36
star
29

FluidAngular

Angular/Fluid demos
TypeScript
32
star
30

AngularWorkshopLabs

Angular and TypeScript Workshop Labs
TypeScript
31
star
31

ASP.NETCoreDemos

ASP.NET Core Demos
C#
29
star
32

Angular-Snippets

This VS Code extension adds Angular/TypeScript/HTML code snippets into your editor.
26
star
33

ASPNETCore-Sync-Async-EF

Demo app showing sync versus async calls with ASP.NET Core and Entity Framework Core. Also includes a simple Angular app that consumes the data.
C#
23
star
34

AccountAtAGlance

ASP.NET MVC, Entity Framework, Web API, jQuery, HTML5 application that demonstrates how multiple technologies can be used together.
JavaScript
23
star
35

AccountAtAGlance-ASPCore

ASP.NET Core MVC and Entity Framework Core Dashboard Application
JavaScript
22
star
36

Microservices-ASPNET-Core-Docker-Course

Code for Microservices, ASP.NET Core and Docker Training Course from https://codewithdan.com
C#
18
star
37

AngularAppDevCourseCode

Code used in the Angular Application Development course.
TypeScript
17
star
38

NodeJSEndToEndCourseCode

Lab code and samples for the Node.js End-to-End Development Course.
JavaScript
16
star
39

openai-acs-msgraph

Example of using Microsoft Graph Toolkit with Angular
TypeScript
16
star
40

So-You-Want-To-Be-A-Web-Developer

Code from the "So You Want To Be A Web Developer" workshop series.
HTML
13
star
41

AngularJSEndToEndCourseCode

Lab code and samples for the AngularJS End-to-End Development Course.
JavaScript
11
star
42

express-convention-routes

Convention-based routes for Express
JavaScript
10
star
43

AngularCustomDirectives

A few simple custom Angular directives for learning purposes.
JavaScript
10
star
44

CoreWebAPIAndAngular

Demonstration of using ASP.NET Core Web API features with Angular 2
C#
10
star
45

Getting-Started-With-TypeScript

JavaScript
8
star
46

M365EndToEnd

Microsoft 365 end-to-end application demo (SSO, Teams, bot, etc.)
JavaScript
8
star
47

ASP.NETCoreCourseCode

ASP.NET Core Course Code
HTML
7
star
48

React-Core-Concepts

Provides a simple demo application covering React core concepts.
JavaScript
7
star
49

angular-swapi

Simple example of using Angular to call into the Star Wars API (https://swapi.co)
TypeScript
7
star
50

NodeJSWorkshop

Node.js Samples
JavaScript
6
star
51

Angular-DynamicComponentDashboard

Example of using Angular to build a dynamic dashboard
TypeScript
6
star
52

AngularIn20JavaScript

Simple AngularJS Application with JavaScript
JavaScript
6
star
53

react-hooks-demos

Simple demos of using React hooks.
TypeScript
5
star
54

AdvancedCSCourseCode

Code for the Advanced C# Course
C#
5
star
55

FluidBrainstorm

TypeScript
5
star
56

AzureForDevelopersCourse

Code for the Azure for Web Developers instructor-led course - https://codewithdan.com/products/azure-for-developers
5
star
57

Timesheets

Old prototype app to convert
JavaScript
5
star
58

FluidVue

TypeScript
5
star
59

Angular-In120

Sample application and code used for the Angular 120-Minute JumpStart video course.
TypeScript
4
star
60

angular-todo-list-fluid

TypeScript
4
star
61

FluidFAST

Fluid demos using FAST web components
TypeScript
3
star
62

github-repo-stats

JavaScript
3
star
63

TailwindTraders-M365

LOB demo app for Teams/M365
TypeScript
3
star
64

HTML5CourseCode

HTML5/CSS3 Course Code
HTML
3
star
65

CopilotChallenge

Copilot challenges
JavaScript
2
star
66

React-Todos-With-Hooks

JavaScript
2
star
67

microsoft-cloud-services-builder

Visual builder tool to help find services and documentation across the Microsoft Cloud.
TypeScript
2
star
68

github-slideshow

A robot powered training repository ๐Ÿค–
Ruby
2
star
69

jQuery-Tips-And-Tricks

HTML
2
star
70

acs-voice-calling-quickstart

Example of getting started with Azure Communication Services voice calling.
JavaScript
2
star
71

Featured-Content

Application framework that can be used to feature and filter content.
TypeScript
2
star
72

jQueryCourseCode

Code for the Mastering jQuery course created by Wahlin Consulting.
HTML
1
star
73

GDClassCodeSept2016

C# and ASP.NET MVC Course Code Samples/Labs
JavaScript
1
star
74

Angular-HelloWorld

HTML
1
star
75

Teams-Webhooks-Connectors

Code from the Learn module located at https://docs.microsoft.com/en-us/learn/modules/msteams-webhooks-connectors/
TypeScript
1
star
76

React-Recoil-And-Hooks

Demonstration of using React Hooks with Recoil.
TypeScript
1
star