这是我最喜欢的使用React Native创建生产级应用程序的技巧

Trust me when I say this, React Native is hard. And it’s not the usual hard of what we think hard is. It is hard in terms of working with in general. In this blog post, I’ll go over some tips and tricks and eventually the best practices I’ve deployed for one of my apps coded in React Native: codedamn Android (or codedamn iOS).

当我这样说时请相信我,React Native很难。 而且,这并不是我们很难想到的。 从总体上讲,这很难。 在这篇博客文章中,我将介绍一些技巧和窍门,以及最终为在React Native中编码的我的一个应用程序部署的最佳实践: codedamn Android (或codedamn iOS )。

Hi! My name is Mehul. I’m a student, youtuber, fullstack developer, app developer and can deploy servers as well. Recently, I decided to launch a developer focused platform (you guessed it right, codedamn). To get it off the ground real quick on mobile devices, I went with React Native. Partly because I’m not a huge fan of Swift and Xcode for now. But little did I know that I’d be interacting more with native code than I thought. Anyway, let’s begin with the information I want to mention.

嗨! 我叫Mehul。 我是一名学生, youtuber ,全栈开发人员 ,应用程序开发人员,也可以部署服务器。 最近,我决定启动一个以开发人员为中心的平台(代码猜错了,您猜对了)。 为了在移动设备上快速真正地投入使用,我选择了React Native。 部分原因是我暂时不喜欢Swift和Xcode。 但是我几乎不知道我会与本机代码进行比我想像的更多的交互。 无论如何,让我们从我要提及的信息开始。

Note: At the time of writing this article, React Native was at v0.57-rc4. Check if some of the things are already available/fixed in recent React Native version!

注意:在撰写本文时,React Native的版本为v0.57-rc4。 检查某些事情在最新的React Native版本中是否已经可用/已修复!

0:知道你在做什么 (0: Know what you’re doing)

Realize that the React Native world is a lonely world right now. You might get yourself into a problem which no one has faced till now (or you’re not able to google it properly). Always keep VCS up with your native project and regularly commit your changes (all the cool kids call it CI). It helps you to revert back to the last working copy pretty quickly without losing a lot of code.

意识到React Native世界现在是一个孤独的世界。 您可能会陷入一个迄今为止没有人遇到过的问题(或者您无法正确搜索该问题)。 始终使VCS与您的本机项目保持一致,并定期提交更改(所有很棒的孩子都将其称为CI)。 它可以帮助您快速恢复到上一个​​工作副本,而不会丢失很多代码。

It is equally important to know what you’re doing. You might end up breaking your project completely if you’re unaware. If you did not use a VCS, well then you are in trouble.

知道自己在做什么同样重要。 如果您不知道,您可能最终会完全破坏您的项目。 如果您没有使用VCS,那么您将遇到麻烦。

1:升级您的JSC (1: Upgrade your JSC)

JSC (JavaScriptCore) is a webkit based JavaScript engine used by React Native on Android platforms to evaluate your JavaScript code. Don’t tell me you thought that React Native converts JavaScript into native code. It doesn’t! ;-)

JSC(JavaScriptCore)是基于WebkitJavaScript引擎,React Native在Android平台上使用它来评估您JavaScript代码。 不要告诉我您认为React Native将JavaScript转换为本地代码。 不是! ;-)

Whatever JS you write is still executed as JavaScript only by JSC on Android. The problem is React Native ships with a very old version of JSC. This means you have to use babel transformations extensively. Sometimes there are bugs so nasty you’ll pull your hair every time you sit to code, because of an older version of JSC.

无论您编写什么JS,仍然只能由Android上的JSC作为JavaScript执行。 问题是React Native附带了非常旧的JSC版本。 这意味着您必须广泛使用babel转换。 有时,由于JSC的版本较旧,您有时每次都坐下来编写代码时会感到非常讨厌,以至于无法忍受。

I learned it the hard way after wasting a day of debugging. There was an unknown random fatal error in between app execution. After studying the logs for quite some time, I came to a conclusion that the app was crashing somewhere where [Symbol.iterator] is used in the transpiled JS code by babel.

在浪费了一天的调试时间后,我很难学了。 应用执行之间存在未知的随机致命错误。 在研究日志一段时间后,我得出一个结论,该应用程序崩溃了,Babel在转译的JS代码中使用了[Symbol.iterator]。

Now, Symbols is an ES6 thing. Babel did not transpile this further, and JSC was so old it wasn’t able to hold up simple things like these and crashed. I wasted almost a day behind figuring out that JSC upgrade was a better solution than other patchy hacks.

现在,Symbols是ES6。 Babel并没有进一步传播它,而JSC太老了,以至于无法忍受像这样的简单事情而崩溃了。 我花了将近一天的时间弄清楚JSC升级是比其他补丁程序更好的解决方案。

Upgrading your JSC is pretty straightforward. Follow this github repo and you should be up and running in no time.

升级JSC非常简单。 按照此github存储库操作 ,您应该立即启动并运行。

2:正确设置Redux (2: Setup Redux correctly)

Redux can be a pain to setup correctly. And by setting it up correctly, I mean integrating it deeply with your app. Whether it is your own reducers or whether it is React navigation. Setting up react navigation with Redux is a great decision for the long-term even though the React navigation page gives a warning about this:

Redux可能难以正确设置。 通过正确设置,我的意思是将其与您的应用程序深度集成。 无论是您自己的减速器还是React导航。 从长期来看,使用Redux设置React导航是一个不错的选择,即使React导航页面对此提供警告:

Heck no. We’re talking about enterprise and production level apps here. Go ahead and store your navigation state in Redux and gain very fine control over your state.

哎呀 我们在这里谈论企业和生产级应用程序。 继续并将您的导航状态存储在Redux中,并可以很好地控制您的状态。

But remember, with great power comes great responsibility. With such fine control over your navigation, make sure you set it up correctly. Or else your app will randomly crash. It’s going to be a pain to set it up initially, but trust me its worth the time.

但是请记住,强大的力量伴随着巨大的责任。 通过对导航的这种精细控制,请确保正确设置了它。 否则您的应用将随机崩溃。 最初设置它会很痛苦,但是请相信我,值得您花时间。

Read about Redux and its integration with react navigation here.

在此处阅读有关Redux及其与react导航的集成的信息 。

3:使用可用的自动化工具,例如fastlane (3: Use available automation tools like fastlane)

Fastlane is a great command line utility for automating a lot of common tasks you’ll encounter. It is more like time optimization rather than code optimization. I think it deserves a spot here because it saves a lot of time once setup correctly.

Fastlane是一个很棒的命令行实用工具,用于自动执行许多常见任务。 它更像是时间优化而不是代码优化。 我认为这里值得一试,因为正确设置后可以节省很多时间。

Checkout fastlane here: https://fastlane.tools/

在此处结帐Fastlane: https : //fastlane.tools/

4:正确处理错误 (4: Do error handling correctly)

Don’t expect your users to ping you with exactly how the app crashes. With more complex apps, it is difficult to find specific steps which lead to the app crash. I use sentry.io for error handling on my apps, and I personally like it a lot. It can hook up in your build steps and even upload the sourcemap to their servers so you can see the actual code, not random garbage in your crash traces.

不要期望您的用户对您的应用崩溃的确切方式进行ping。 对于更复杂的应用程序,很难找到导致应用程序崩溃的特定步骤。 我使用sentry.io来处理我的应用程序中的错误,我个人非常喜欢它。 它可以连接您的构建步骤,甚至可以将源映射上传到它们的服务器,以便您可以查看实际代码,而不是崩溃跟踪中的随机垃圾。

Sentry is available at https://sentry.io/

Sentry可通过https://sentry.io/获得

5:以正确的方式调试! (5: Do debugging the right way!)

Are you still using that fancy chrome inspect console to debug your React Native apps? And how about Redux? Another tab? What if you want to clear the async storage of your app? Force stop the app and clear data? Seems too tedious especially when you’re actively developing the application. Instead, use a standalone dedicated debugger for react native. Best part? It’s free!

您是否仍在使用该高级chrome检查控制台来调试React Native应用程序? 那Redux呢? 另一个标签? 如果您想清除应用程序的异步存储该怎么办? 强制停止应用程序并清除数据? 似乎太繁琐,尤其是在您积极开发应用程序时。 相反,请使用独立的专用调试器来响应本机。 最好的部分? 免费!

Here’s your React Native debugger: https://github.com/jhen0409/react-native-debugger

这是您的React Native调试器: https : //github.com/jhen0409/react-native-debugger

5个快速提示: (5 quick tips:)

  • Keep your file structure organized. It is very important to scale your application.

    保持文件结构井井有条。 扩展应用程序非常重要。
  • Avoid using expo for your apps. PLEASE NO. Even if you use it you’ll realize you HAVE to eject at some point, and then good luck figuring out all the mess. It’s not impossible, it will eat a lot of your time later on. Remember, expo is good but we’re talking about long-term business/startup related apps and not a cat age app (for which expo would be good).

    避免将expo用于您的应用程序。 请不。 即使使用它,您也会意识到自己必须在某个时候弹出,然后祝您好运。 这不是不可能,它将在以后花费很多时间。 请记住,expo很好,但是我们在谈论的是长期业务/启动相关的应用程序,而不是猫腻的应用程序(对于expo来说这是个不错的选择)。
  • MAKE SURE to create a package-lock.json file (if using npm). You’ll regret it a big time later when you accidentally remove your node_modules folder and realize no package on npm cares about semantic versioning.

    确保创建一个package-lock.json文件(如果使用npm)。 当您不小心删除了node_modules文件夹并且意识到npm上的任何软件包都不关心语义版本时,您会后悔了很长时间。
  • Do not use very heavy UI libraries with React Native. It slows down performance even in production. I do not recommend NativeBase as of now, even though it seems very fancy in terms of UI. It’s expensive on performance. There are much better options available like react native paper.

    不要在React Native中使用非常繁琐的UI库。 即使在生产中,它也会降低性能。 我现在不建议您使用NativeBase ,即使就UI而言,它似乎也很不错。 性能上很昂贵。 有很多更好的选择,例如React Native Paper 。

    Thanks to

    谢谢

    Andre Biel for the comment, please make sure to review this doc page thoroughly if you’re tired of slow RN apps and/or profiling them. It is a goldmine: https://facebook.github.io/react-native/docs/performance.html

    安德烈·比尔 ( Andre Biel)发表评论,如果您对缓慢的RN应用程序和/或对其进行性能分析感到厌倦,请确保彻底阅读此文档页面。 这是一个金矿: https : //facebook.github.io/react-native/docs/performance.html

  • Take advantage of React Native’s replacing JS bundle on the fly without re-submitting the app to app stores using technologies like CodePush.

    利用React Native即时替换JS软件包的优势,而无需使用CodePush之类的技术将应用重新提交给应用商店。

  • Get comfortable with at least the basics of native code on both platforms. Especially the build files on Android and pod files on iOS. Those are some files you’ll spend most of your spending-time-on-native time on.

    至少熟悉两个平台上的本机代码基础。 尤其是Android上的构建文件和iOS上的pod文件。 这些是您将大部分时间花在本机上的文件。

I will continue to write blog posts on React Native as a series of posts, maybe, let’s see!

我将继续在React Native上写博客文章,作为一系列文章,也许吧!

有什么问题吗 (Questions?)

Ask away in the comments below! I’ll be happy to help.

在下面的评论中提问! 我很乐意提供帮助。

Quick shameless plug: If you’re getting started with React Native, here’s my 95% off course on how to get started with it: React Native — The First Steps

快速无耻的插件: 如果您要开始使用React Native,这是我入门的95%课程: React Native —第一步

翻译自: https://www.freecodecamp.org/news/here-are-my-favorite-hacks-for-creating-production-level-apps-with-react-native-6f0369d879b2/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393232.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

HTTP 协议 -- 浏览器缓存机制

浏览器缓存机制浏览器缓存机制主要是 HTTP 协议定义的缓存机制。HTTP 协议中有关缓存的缓存信息头的关键字有 Cache-Control,Pragma,Expires,Last-Modified/ETag 等。浏览器请求流程浏览器第一请求流程:浏览器再次请求流程&#x…

php 获取实例的类名,PHP类名获取方式及单例模式实现

类名是什么意思?顾名思义就是各类起了一个名字,java中有两种数据类型,基本数据类型和引用数据类型,这里类就是引用数据类型,我们在定义一个类的时候必须给类起一个名字,一边后面的使用比如:int …

CAP理论的理解

CAP理论作为分布式系统的基础理论,它描述的是一个分布式系统在以下三个特性中: 一致性(Consistency)可用性(Availability)分区容错性(Partition tolerance)最多满足其中的两个特性。也就是下图所…

开启真我新格调 期待绚丽的未知

我们每天都在朝幸福努力着,而眼光看的太远,往往会忘记自己究竟要的是什么。人想要幸福,就得活出真我,当人不能放心大胆地活出自己时,内心会有不安和痛苦。为何要隐藏真正的自己?外界的评判真的那么重要?真我新格调&a…

vuex构建vue项目_如何使用Vue.js,Vuex,Vuetify和Firebase构建单页应用程序

vuex构建vue项目如何使用Vuetify和Vue路由器安装Vue并构建SPA (How to install Vue and build an SPA using Vuetify and Vue Router) Do you want to learn how to use Vue.js? Want to create a realistic website using Vue.js? In this tutorial, I will teach you how t…

vim 自动补全

1. vim编辑器自带关键字补全 触发&#xff1a; ctrl n or ctrl p 补全命令&#xff1a; <C-n> 普通关键字 【能够根据buffer以及标签文件列表等进行关键字补全】 <C-x><C-f> 文件名补全【像在命令行的提示信息一样&#xff0c;提示当前工…

Linux-RHEL5-初学者配置vsftpd注意事项

我安装的是RHEL5.4&#xff0c;初学&#xff0c;不在意版本。为了学习方便&#xff0c;安装操作系统时能选的选项都选全了。事实证明这个决策是正确滴&#xff0c;要不还得花时间学习怎么安装vsftp。 网上关于如何配置vsftpd的资料挺多的。 我花了小半天的时间&#xff0c;除了…

leetcode459. 重复的子字符串

给定一个非空的字符串&#xff0c;判断它是否可以由它的一个子串重复多次构成。给定的字符串只含有小写英文字母&#xff0c;并且长度不超过10000。 示例 1: 输入: “abab” 输出: True 解释: 可由子字符串 “ab” 重复两次构成。 代码 class Solution {public boolean r…

解析xml的4种方法详解

1. 介绍 1&#xff09;DOM(JAXP Crimson解析器) DOM是用与平台和语言无关的方式表示XML文档的官方W3C标准。DOM是以层次结构组织的节点或信息片断的集合。这个层次结构允许开发人员在树中寻找特定信息。分析该结构通常需要加载整个文档和构造层次结构&#xff0c;然后才…

php mvc 高性能框架,swoolefy-基于swoole扩展实现的高性能的微服务和mvc框架

swoolefy这是一个基于swoole扩展实现的轻量级高性能的API和Web的MVC微服务框架&#xff0c;参考了TP,Yii2,Workerman&#xff0c;swoole_framework等框架的的设计思想。同时也结合了多年来的技术的积累的以及生产环境中的实践经验实现的功能特性1、轻量级的框架,实现路由与调度…

arcore_如何使用ARCore和Android Studio构建增强现实Android应用

arcoreby Ayusch Jain通过Ayusch Jain 如何使用ARCore和Android Studio构建增强现实Android应用 (How to build an Augmented Reality Android App with ARCore and Android Studio) This article was originally posted here本文最初发布在这里 In the previous post, I expl…

最小值的最优化问题

无约束极小值的最优化条件&#xff1a; 关于多元函数极小值点的必要条件&#xff1a; 满足的点称之为f(x)的驻点或稳定点&#xff0c;但是反过来&#xff0c;满足梯度条件的点不一定是f(x)的局部极小值。因此&#xff0c;定理转化为求解下面的方程组问题&#xff1a; 对于上面…

leetcode950. 按递增顺序显示卡牌

牌组中的每张卡牌都对应有一个唯一的整数。你可以按你想要的顺序对这套卡片进行排序。 最初&#xff0c;这些卡牌在牌组里是正面朝下的&#xff08;即&#xff0c;未显示状态&#xff09;。 现在&#xff0c;重复执行以下步骤&#xff0c;直到显示所有卡牌为止&#xff1a; …

第2课 - 搭建Lua开发环境

第2课 - 搭建Lua开发环境 1. Lua 的优点 &#xff08;1&#xff09;Lua 使用标准的 ANSI C 进行开发&#xff0c;可以无缝集成到宿主程序&#xff0c;且几乎支持所有平台。 &#xff08;2&#xff09;Lua 是开源且免费的软件&#xff0c;以源码的方式直接发布。开源软件的发布方…

关于文件系统权限的管理

关于文件系统权限的管理 众所周知的是&#xff0c;一个操作系统&#xff0c;是需要为不同的用户进行服务的&#xff0c;因为不能让每个人都以管理员进行操作&#xff0c;这样做的话&#xff0c;毫无安全性可言&#xff0c;所以我们需要验证和授权。这就体现了权限的重要性&…

深度学习工作开展_深入开展深度工作:新经济中的两项核心能力

深度学习工作开展by Bar Franek由Bar Franek 深入开展深度工作&#xff1a;新经济中的两项核心能力 (Going Deeper on Deep Work: Two Core Abilities for Thriving in the New Economy) 爱深层工作的更多理由 (A Few More Reasons To Love Deep Work) I had no idea my first…

java获取文件名方法,利用Java获取文件名、类名、方法名和行号的方法小结

大家都知道&#xff0c;在C语言中&#xff0c;我们可以通过宏FILE、 __LINE__来获取文件名和行号&#xff0c;而在Java语言中&#xff0c;则可以通过StackTraceElement类来获取文件名、类名、方法名、行号&#xff0c;具体代码如下&#xff1a;public static int getLineNumber…

tp5.1升级指导---控制器调整 _initialize方法更改为initialize

控制器调整 为了规范化&#xff0c;继承了think\Controller类的话&#xff0c;初始化方法从原来的_initialize方法更改为initialize。转载于:https://www.cnblogs.com/lsyy/p/11027416.html

leetcode537. 复数乘法

给定两个表示复数的字符串。 返回表示它们乘积的字符串。注意&#xff0c;根据定义 i2 -1 。 示例 1: 输入: “11i”, “11i” 输出: “02i” 解释: (1 i) * (1 i) 1 i2 2 * i 2i &#xff0c;你需要将它转换为 02i 的形式。 代码 class Solution {public String c…

初始多态

package Li;public class Person { String name;public Person() {super(); }public Person(String name) {super();this.name name; }public void eat(){System.out.println(name"正在吃面包"); } }package Li;public class Student extends Person {public Studen…