Is there any advantage to use the Mantra.js architecture framework? [closed] - javascript

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
Meteor.js integrates well inside a Mantra.js architecture, but does it have advantages since it slows the running of my requests.
For instance a dummy request in GraphQL (get a random string from the server) runs in few ms using Apollo Client and 1 second and more using Mantra.js (exact same request wrapping Apollo stack).

It only depends what kind of project you want to work on.
Mantra.js is an architecture framework for Meteor.js, that means :
it helps a developer to follow the creation and development of its modules corresponding to the Mantra framework. The developer is free to use any kind of front-end library he/she wants, any Data Query and Client caching he wants, but in my opinion, it doesn't really improve the quality of the code. Someone can organize a project with own rules and it can be maintainable easily.
So if your team is comfortable with your code structure you definitively don't need something like Mantra.js.

Related

Which is the best way to make web application? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I'm new to web development and I want to make some small web applications like a video downloaders, an document converter, and that sort of apps. I know that I can use either a JavaScript framework (react, vue, or angular) or php (laravel) but I'm confused which one is best suited for this situation.
I don't know if the this is the right place to ask this kind of questions but I want to know your opinion, so should I go with JavaScript or go the php route? I'll appreciate you help guys and thanks.
This is a very subjective question. Personally I'd recommend NodeJS or PHP as I'm not a big fan on PHP for my own subjective reasons.
My recommendations:
NodeJs: Great ecosystem, lots of shared knowledge
Use Webstorm from Jetbrains
Learn about docker, use it and make your deployments easy
Use something like Heroku until you establish it's limitations for you then you'll be better equipped to understand why you want to host another way.

How to understand the relationship of Nodejs, SPA and API? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
Recently I attended a presentation of SPA/API/Nodejs, it looks good, so I start to google a lot and try to figure out, but get confused more.
It seems that in a SPA website, when use click, for example, a user's profile, it will call some API like http://example.com/profile/username and get a JSON data and will be displayed.
And I found a lot of frameworks, express.js/meanjs/Mojitojs/angularjs/reactjs and so on. really get lost.
So I'm going to develop a website, which will not be a SPA, but I really like Nodejs, so I'll use nodejs and i also like the idea of API to get data and display.
Can you recommend some framework to start?
SPA Frameworks: AngularJS, React.js
Node.js Webserver frameworks: Express.js, Meteor, Sails.js
You can also check Yeoman generators which help you to create a project skeleton.

Do I need to know Javascript, jQuery, JSP, PHP to make large scale complex android apps? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 7 years ago.
Improve this question
I know that JAVA is the main language used to make android apps. But is there any necessity of other languages such as Javascript, jQuery, JSP, PHP to make great android apps? please note that I am not talking about a simple "hello world" android app. I am talking about large scale complex apps.
Well, it dependes on what exactly the application does. If you require to have, for example, an API on a server to which you can make requests (and you want to develop the API yourself), you need to know those "languages". If the application is complex but it's contained within itself (that means that it doesn't require from you to develope on a server-side language), the only thing you need to know is Java.
On the other side, you don't NEED to develope those server-side applications yourself. You can build the app entirely on Java and consume the data from the servers, leaving the programming of the server-side applications to a third-party (like a freelancer).

Is it a good idea to develop two separate node application for serving webservice and for consuming webservice to render it on browser? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
If we are running two different node instance one of each purpose( webservice engine/data engine and webservice consumer) will it be good or keeping both the purpose in same application will be better ?
Yes it is.
One project is your API, the second project is the access to your API by web.
Maybe in the future you might need a mobile app to connect with the API or maybe the webapp technology becomes obsolete and you might need to replace it for another modern technology, so that you don't have to change your API.

AngularJS or ExtJS? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
I want to build a web application which provide a some kind of analysis service.
I hope to build the back-end with PHP or JavaEE which supports RESTful API.
For front-end I want some framework to use light, easy for development/learn, ... etc.
I heard about AngularJS or ExtJS. which is better?
It depends with your expectations. But seems more suitable choice for you AngularJS.
May be you should do some research around..
This is bit fare comparison.
But Even in that article something are seems wrong. (Ex:- he said angular is harder to understand, for me it's not). So, you'll be finding more of opinion based answers.
Best thing is after doing some reading try to use both of them, then you decide what to use.
Anyway, AngularJS will be better if you are looking for opensource/free framework.

Categories