Is there a good VueJs native mobile platform? [closed] - angularjs

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 want to build a small native mobile app using Vuejs.
I understand that there are two platforms on which you can develop native mobile apps using VueJs; Weex and Nativescript.
Here are my questions:
1- Have you worked with any of the platforms? If yes, are they any good? (I've heard bad reviews so far)
2-According to my research React Native is way better than both platforms so I was curios to know if anyone here has worked with 'Vuejs to ReactJs converter'?
React-Vue: https://github.com/SmallComfort/react-vue
3- Should I abandon my VueJs background and go for Reactjs and React Native?
Thanks

I recommend NativeScript-Vue. The implementation is solid with a new Vue-CLI template. Visit nativescript-vue.org for more details and hop on NativeScript Slack (#vue channel) for solid community help.

I am self taught and just starting out on building native apps with javascript. I have experimented with react-native and the new NS-vue CLI v0.2 template. Not only am I sticking with nativescript-vue I am confident this framework is going to see continuous developments in 2018 and beyond that I am excited to watch unfold

You can build native app using Vuejs with weex
there is also great article about Native apps with Vue.js: Weex or NativeScript? 

Related

Is React-Native is a good option for for android development? [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 19 days ago.
Improve this question
I am using React library for making frontened part for atleat more than 1 year.
So, using React-Native for android development is a good option for me or not?
I am basically a MERN stack developer. So, I am trying to learn android development also.
If you are a MERN stack developer then it's good to start your Mobile development with React native. You will not only make apps for android but for iOS as well. Even you are focusing more on Android apps development then React Native is good option. The reason is simple: you are working in React (javascript or Typescript) so basically it's almost same for mobile as well, and about native code that's not a rocket science. Good Luck :)

What are the biggest difference between react native and flutter? [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 2 years ago.
Improve this question
Now a days most developer are using cross platform app development frameworks for build to various mobile apps.I am still beginner for the react native app development.But I have heard flutter is the best more than react native.Is it true? if is it true, please tell me what are the biggest difference between them.
react depend on javascript language
flutter on dart language
react is a framework of js
Flutter is not just a framework but a complete SDK
react work on the web as react js and on mobile as react-native.
dart is oop language work on the web with the compiler to js and flutter as mobile development.
Using the Dart language allows Flutter to compile the source code ahead-of-time to native code.
react Instead of compiling down to native code, React Native takes your application and runs it using the host platform's JavaScript engine, without blocking the main UI thread. You get the benefits of native performance, animations, and behavior, without having to write Objective-C or Java.
-

React or React Native to start learning [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 have to work on project which has mobile application as well as web development too.For Mobile Application Development React Native has chosen but for Web development React has chosen.
I am new to React and confused from where i have to start learning. It should be React or React Native?
Thanks in advance for your answer.
I would recommend to first start learning React, and then move on to React Native as React Native builds on React, and assumes you are already familiar with it. As pointed out by Vucko, the official documentation is a great place for information, otherwise you are interested in reading a book instead, check out Learning React functional web development with react and redux by alex banks and eve porcello, this helped me figure out a lot of things, and also covers redux which you might be using in the future.

Is there a benefit to using Swift or Java over NativeScript? [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
From my understanding, if you want to develop a multi-platform app, it makes more sense to just use NativeScript or some other hybrid language. So would there be a point in using swift, objective-c, java, etc over something like NativeScript?
In the long run, I would love to choose swift/java over cross-platform framework. Even though with NativeScript, React Native or Xamarin, they all render the real UI Component from native API but I think there is still a gap between performances of swift/java and cross-platform.
Cross-platform is perfect for small or medium apps, or companies who have limited human resources as cost for developing and maintaining native apps is quite high. However, the cross-platform apps won't be as stable as native apps, so if you want to have a feature-rich apps, swift/java would be better. Moreover, I don't know much about React Native but you have full access to native API in NativeScript with JavaScript.
Technically, you can do everything swift/java can do in NativeScript. However, there are something in native API (e.g UI components, native function, etc.) that might take lots of efforts to access as it's quite tricky to translate swift/obj-C/java to javascript. Fortunately, there are many plugins or code snippets made by community that might be helpful.
That's my personal idea.

Do you work with the react native should learn react.js? [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 2 years ago.
Improve this question
Everywhere is talking about react native and react.js Now I want to know whether to work with react native must learn to react or react native of separate.
Thank you!
Yes, it is advised to learn React before you start with React Native, since the principles you'll need when developing in React Native are all based on React.
From Facebook:
React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React.
So before you study all the mobile specific API's and attention points, it's good to be familiar with React itself.
That would depend on what you would like to do. Both are open sourced by Facebook:
ReactJS: This is basically a JavaScript library used mainly as the V in MVC. But it can also render on the server side using Node. It can power user interfaces, web applications and native apps using React Native.
React Native: This is a mobile framework that enables you to build native mobile applications using a consistent developer experience based on JavaScript and React.

Resources