Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Customermanager | 712 | a year ago | July 17, 2022 | mit | JavaScript | |||||
CustomerManager AngularJS/BreezeJS Application with a custom route provider. | ||||||||||
Newsapi | 22 | 5 years ago | n,ull | TypeScript | ||||||
3 apps, that use NewsAPI (ES6, Express, Mongo, Angular) | ||||||||||
Tkzd | 14 | 3 years ago | 1 | JavaScript | ||||||
Meteor Project example ✨ | ||||||||||
Rest Routing Node | 14 | 12 years ago | JavaScript | |||||||
REST resource routing with node and express | ||||||||||
Hashhub | 10 | 2 years ago | apache-2.0 | JavaScript | ||||||
Hash/Hub is initiative to provide students with everything that revolves around engineering degree, we have so many different free Tools to make thier Profile more Attractive and Professional. We have Fields section where they will find out resourses, roadmaps, experiences, programs, competetions, tips and tricks to not just master thier degree but also explore and enjoy every aspect of being an engineer with a full pack of knowledges. We have Blogs section where students can share their journey, achievements and tutorials, and can read the blogs for absolutley free. | ||||||||||
Openshift Nginx Routing | 6 | 10 years ago | 1 | apache-2.0 | JavaScript | |||||
Nginx implementation of the OpenShift Routing SPI | ||||||||||
React Express Mongo Prebootcamp Workshop 3 2018 | 4 | 5 years ago | JavaScript | |||||||
Pre-bootcamp Workshop 3 for TechLadies Bootcamp 4: React, Express and MongoDB | ||||||||||
Ticket Booking | 4 | 2 years ago | mit | JavaScript | ||||||
A ticket booking Application for the DBMS project | ||||||||||
Fullstack Movie Booking App | 3 | 6 days ago | JavaScript | |||||||
Full Stack Movie Booking App is an advanced project that demonstrates the development of a robust and scalable online movie booking platform. It covers all the necessary steps and technologies required for building an efficient movie booking system using the MERN (MongoDB, Express, React, Node.js) | ||||||||||
Teamcoding | 3 | 5 years ago | JavaScript | |||||||
A simple collaborative online judgement platform supporting adding problems. |
If youre 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:
This version of the application has support for custom routing and dynamic controller script loading. See this this post for more details. The standard version of the application with no custom routing can be found here.
This application demonstrates:
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:
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 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:
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:
View the application at http://localhost:3000
Thanks to Tony Quinn for contributing the initial Node.js/MongoDB code!