All Questions
Tagged with angularjs architecture
17 questions
2
votes
1
answer
396
views
Implementing Business Logic in Architecture
I am currently making architecture for one application in which we have different types of user and every user has different types of functionalities to perform.
I am confuse in one point if i try to ...
0
votes
1
answer
713
views
What are architectural approaches for converting large multipage apps to use new JavaScript frameworks?
We have many siloed legacy multipage applications. For example, a personal information collection application may contain four or five HTML4 form based applications. The backend is based on Spring ...
-2
votes
3
answers
892
views
what is better way to architecture project
I am pretty new to angular.js world. I wanted to know best architecture for my solution. I have 4 projects in my solution. First is angular.js app solution which has below structure. Is this correct ...
-1
votes
1
answer
334
views
I'm building an app with Node, Express, and MongoDB. Is AngularJS necessary?
Node, Express, and MongoDB are really connected so I can understand why they are frequently used together. For a web app of medium complexity, can I get away with only using HTML/CSS and EJS for the ...
0
votes
2
answers
902
views
Scalable Angular SPA Architecture
I am developing an Angular SPA and I am currently in the design phase. I have created a sample architecture which I am planing to use in my SPA but I would get some feedback because I want the ...
5
votes
1
answer
857
views
Different type of MEAN Stack Architectures
I am reading a book (Getting MEAN by Simon Holmes) about MEAN Stack which talks about different architectures that can be used while developing an app in MEAN Stack and I got a little confused with ...
2
votes
2
answers
282
views
Web App Authentication's Architecture Related Query
I have a web app that makes use of node.js in the backend and angulajs on the front end.
Let's say I have a user who has the ability to login via multiple systems; I must allow multiple logins.
I ...
2
votes
3
answers
249
views
Can one html page with web services replace current server-client technology?
I have everything I need in 2 services in form of REST api's, is it a good idea or even possible to replace my existing asp.net app by writing ONE single html page (embedded with Angular templates) ...
-1
votes
2
answers
843
views
Angular JS vs Modern MVC frameworks
I might be wrong for some things here, but here is what I recently though about.
Modern frameworks MVC such as ASP.NET MVC 5, CakePHP, Java Spring etc. has their logic clearly separated into Models ...
1
vote
1
answer
1k
views
Pros and Cons of odd iframe 'architecture'
I'm in the process of experimenting with ways of breaking up a large (and growing project). Currently, we're working with a big Angular application with what will soon be a large number of components.
...
2
votes
1
answer
649
views
NodeJs website webapp architecture
I would like some advice on how best to architect a website comprising the following:
tool
a landing page, open to the public, main marketing tool
the main website/app, that people can access only if ...
1
vote
1
answer
104
views
SPA Applications: AJAX to fetch templates or build from strings
I'm working on a large angular application and I'm currently using a factory class that builds HTML templates from strings. We don't have to worry about mobile support for the application and I'm ...
1
vote
0
answers
886
views
AngularJS directive architecture: Where to put parameters?
I'm using a charts-Plugin (Morris.js) in my AngularJS application. I'm building a directive for each type of chart.
The plugin is called like this:
new Morris.Line({
// ID of the element in which ...
1
vote
2
answers
24k
views
How to structure REST api service that accepts POST parameters in the body
Everything I've read says to pass parameters to a REST service in the URI, whether by template, or query string:
https://www.myapp/my/login/api/authenticate/ganders/mypassword
or
https://www.myapp/...
3
votes
2
answers
1k
views
Why don't we completely de-couple frontend JS frameworks and backend APIs? [closed]
Whenever we implement a frontend framework in the likes of Backbone, AngularJS etc. there's an integration process involved with the backend technologies like NodeJS, Rails, Yii etc. (like setting up ...