SmartGWT, SmartClient differences [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 3 years ago.
Improve this question
Is SmartClient same with SmartGWT? If not what's the difference between the two and which is a better tool to create a web application?

Many answer on the web about this:
Smartclient is the base Javascript framework
Smartgwt is a Gwt wrapper of this framework.
You choose the one whiche is more appropriate to your development skills and uses

SmartGWT is based on java code and when compiled it transforms it into java script, is a heavy since it transforms java code into js.
SmartClient is a framework based on js, you can use its components in an xml page and you manipulate them in Js, and it’s light.

Related

React with JavaScript or TypeScript? [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
React with JavaScript or TypeScript?
which is best if typescript is please explain why it is.
This will depend on the size and type of the project. If a small project is developed by, for example, only one developer is sufficient for JS, if one is a large enterprise solution, then it is a better typecript.
The TypeScrip main features:
optional static typing (the key here is optional)
type Inference, which gives some of the benefits of types
access to ES6 and ES7 features
the ability to compile down to a version of JavaScript that runs on all browsers

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 ;)

what coding format and standard should be followed while writing javascript library [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 6 years ago.
Improve this question
I am working to build my own custom UI library providing a feature like customized form elements, cards, tabular view and much more, most of the feature is inherited from bootstrap. there is a lot of javascript code and I am looking for proper standard and format to be followed while writing any javascript library to make the code manageable and can be reused.

what practice is better using pure javascript & css is or using frameworks? [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 6 years ago.
Improve this question
being a student which practice is better using pure javascript & css or frameworks? And which is better for professional field?
Depends what you want to do.
Most of the times, what you want to build is already built by someone else so there is no need (and mostly, no time) to re-invent the wheel. Customers want results as soon as possible, so frameworks are good for prototyping.
But to get there, you should first try building things from scratch, so for learning you go with pure CSS and vanilla JS, and then build your knowledge of frameworks.

Node.js server side application starter [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 am starting a new Android app, and I would like to know what should be the best server-side stack that I could use.
I heard some about MeanIO, MeanJS, Cleverstack, Generator Angular Fullstack.
Which of these suggestions should be the best? Is there another one that is not on the list that would be even more interesting?
If I am correct in saying it depends in what you're doing and trying to focus on. If you wish to also build a web-based front-end it's probably necessary to include AngularJS. If you aren't planning on doing that you could probably cut out the need for Angular.
I imagine the MEAN stack (https://github.com/meanjs/mean) would be enough for your Node.JS server. I doubt you will need to use Angular for an android app so you will be more focused upon the Express+Node+Mongodb portions.

Categories