how to improve performance of web applications? [closed] - javascript

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
We have created web app using vanilla JavaScript. Please suggest some ways by which I can improve performance of web app.How can I improve performance? Thanks in advance.

There are lot of ways you can improve web performance. Some common things are listed in below link :-
https://www.keycdn.com/blog/front-end-optimization/
If you are using vanilla javascript then along with above tips in link I would suggest read below links (I found them handy when I worked with vanilla javascript) :-
https://www.w3schools.com/js/js_best_practices.asp
https://google.github.io/styleguide/javascriptguide.xml
And for javascript you should atleast practise below concepts very thoroughly (This will improve code quality and your knowledge):-
http://javascriptissexy.com/16-javascript-concepts-you-must-know-well/

Related

shall I use ReactJS in a web SPA App when Vanilla can do the job? [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 4 years ago.
Improve this question
so I have built a good performing web SPA App using Vanilla JS; the question is:
should I switch to react or continue to use vanilla when it can do the entire job smoothly?
when yes, then should I rebuild everything again with react or just use it for the new parts of the project?
thanks!
There is no point in switching.
Everything that "REACTJS" can, vanilla JS can do too.
REACTJS makes things easier, but if you're good in Vanilla, stick with it!
It can not be more powerful ;)

Best practices in creating Cordova plugins [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm still starting to create a Cordova plugin, I've read their documentation and an article on how to create one.
I found it simple and easy to create however, aside from creating I would like to know if what are the best practices and/or useful tools to be used for debugging and testing the plugin. Also what would the best OOP Javascript pattern to implement?
Thanks!

Is angular.js considered too large for simpler use cases [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
Would angular.js be considered too large to use for simpler use cases, for example just for a certain
portion of a web page which is not a SPA ?
I would say yes. For small tasks like you describe here, I prefer to use simpler two-way-binding-frameworks such as KnockoueJS. It is super easy and you can achieve quite a lot of cool funtionality.
The answer of your question is yes and it is discussed in the AngularJS documentation.

What's the secret of high performance animation of GSAP? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am using GSAP(JavaScript) which has high animation performance. I am interested in what has happened behind its unbelievable performance. How does it work? How to improve my JavaScript skill of writing animation?
Any ideas are appreciated.
Sorry for my poor English, feel free to correct my grammar mistakes.
The source code is freely available at GitHub. Why not just have a look how they do it?

JavaScript Framework Order? [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 9 years ago.
Improve this question
First post on this site, so bear with me.
I got a decent handle on jQuery, but then I tried to jump to Backbone.js and it was a little bit over my head. And I decided that I want to ease my way into it by slowly working up.
What order did YOU learn the Frameworks in?
Before learning jQuery, you can check these W3Schools tutorials:
http://www.w3schools.com/jquery/default.asp
http://www.w3schools.com/js/
A good resource for learning jQuery is on the jQuery Learning Center site: http://learn.jquery.com/. Especially, I would recommend you the JavaScript 101 Chapter for the beginning: http://learn.jquery.com/javascript-101/

Categories