上一页 1 2 3 4 5 6 ··· 14 下一页
摘要: Git 全局设置: git config --global user.name "ASxx" git config --global user.email "123456789@qq.com" 创建 git 仓库: mkdir wapcd wapgit inittouch README.mdgit 阅读全文
posted @ 2018-12-12 22:35 老榕树 阅读(259) 评论(0) 推荐(0) 编辑
摘要: npm的.npmrc文件在哪里?缓存及全局包文件在什么位置? npm作为node开发过程中的必备工具,长期使用之后,您可能会想:这些全局安装的node包都放在硬盘里面的哪个地方?配置文件.npmrc文件在哪里?node包的缓存位置在哪里?本文里,苏南大叔就讲述npm相关的这些位置信息。如果您需要深入 阅读全文
posted @ 2018-12-12 21:42 老榕树 阅读(7488) 评论(0) 推荐(0) 编辑
摘要: 终端命令 open 打开 .npmrc 插入一行代码 registry=https://registry.npm.taobao.org 阅读全文
posted @ 2018-12-12 10:14 老榕树 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://react.rocks/tag/ReactNative?show=60 https://github.com/ReactNativeNews/React-Native-Apps 阅读全文
posted @ 2018-12-07 23:03 老榕树 阅读(370) 评论(0) 推荐(0) 编辑
摘要: iOS9 & iOS10 & iOS11 HTTP 不能正常使用的解决办法 xcode ios 291.4k 次阅读 · 读完需要 8 分钟 iOS9 & iOS10 & iOS11 HTTP 不能正常使用的解决办法 xcode ios 291.4k 次阅读 · 读完需要 8 分钟 iOS9 & i 阅读全文
posted @ 2018-11-30 21:44 老榕树 阅读(872) 评论(0) 推荐(0) 编辑
摘要: Components Learn how to type React class components and stateless functional components with Flow Search docs Components Learn how to type React class 阅读全文
posted @ 2018-11-30 20:45 老榕树 阅读(1752) 评论(0) 推荐(0) 编辑
摘要: 一、环境准备: 1、下载安装VSCode,Node.js,Yarn 2、打开命令行终端或powershell,输入yarn global add create-react-app安装react的脚手架create-react-app 3、打开VSCode,安装相应插件 必要:ESLint、Docum 阅读全文
posted @ 2018-11-27 10:23 老榕树 阅读(18591) 评论(0) 推荐(0) 编辑
摘要: Genymotion虚拟镜像下载慢或者失败的解决办法 http://files2.genymotion.com/dists/8.0.0/ova/genymotion_vbox86p_8.0_180611_152321.ova Genymotion虚拟镜像下载慢或者失败的解决办法 http://fil 阅读全文
posted @ 2018-11-23 16:44 老榕树 阅读(751) 评论(0) 推荐(0) 编辑
摘要: 一、 let、const 和 var let和const只在当前块级作用域中有效const用来声明常量var是全局作用域有效的 constants.js 模块export const A = 1;export const B = 3;export const C = 4; test1.js 模块im 阅读全文
posted @ 2018-11-14 10:57 老榕树 阅读(120) 评论(0) 推荐(0) 编辑
摘要: React Native基础教程 React Native是Facebook开源的框架,用来写Android和iOS移动App。它的口号是 “Learning once, write anywhere”,目的是统一View的编写。我个人也是由于公司需要,故入坑学习,下面就我的理解简单总结下React 阅读全文
posted @ 2018-11-14 10:55 老榕树 阅读(2464) 评论(0) 推荐(0) 编辑
摘要: ReactNative前端开发者 文档版本0.0.2 Author: Necfol 说明: 本文档用于指导前端React Native的开发,如需开发其他其他框架应用,不适用本文档 前期准备 1、搭建脚手架 1.1、安装脚手架工具 通过 npm 安装 React Native 脚手架命令行工具 1. 阅读全文
posted @ 2018-11-14 10:12 老榕树 阅读(620) 评论(0) 推荐(0) 编辑
摘要: React Native 日常报错 'config.h' file not found React Native 日常报错 'config.h' file not found React Native 日常报错 'config.h' file not found React Native 日常报错 阅读全文
posted @ 2018-11-12 22:37 老榕树 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 1. 安装jdk1.8 2.复制android sdk 设置代理 mirrors.neusoft.edu.cn 端口 80 http代理 更新sdk 安装 android support repository / intel x86 emulator accelerator 3. 安装virtual 阅读全文
posted @ 2018-11-11 20:09 老榕树 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Sublime Text3(mac)一些插件和快捷键 楚简约 关注 2017.02.24 17:02* 字数 1216 阅读 412评论 0喜欢 2 楚简约 关注 2017.02.24 17:02* 字数 1216 阅读 412评论 0喜欢 2 2017.02.24 17:02* 字数 1216 阅 阅读全文
posted @ 2018-11-07 12:27 老榕树 阅读(372) 评论(0) 推荐(0) 编辑
摘要: Sublime Text 3 搭建React.js开发环境 Sublime有很强的自定义功能,插件库很庞大,针对新语言插件更新很快,配合使用可以快速搭建适配语言的开发环境。 1. babel-sublime 支持ES6, React.js, jsx代码高亮,对 JavaScript, jQuery 阅读全文
posted @ 2018-11-07 10:26 老榕树 阅读(686) 评论(0) 推荐(0) 编辑
摘要: 打开Sublime Text3,点击左上角的Sublime Text3按钮,然后选择“Preferences”里面的“Settings-user” 在打开的配置文件里面,加入下面图中的这句代码即可"open_files_in_new_window":false 设置好后,重启Sublime Text 阅读全文
posted @ 2018-11-07 09:54 老榕树 阅读(1226) 评论(0) 推荐(0) 编辑
摘要: Could not GET 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.1.2/gradle-3 2018年07月24日 19:05:05 老衲不出家 阅读数:1923 Could not GET 阅读全文
posted @ 2018-11-05 21:19 老榕树 阅读(1216) 评论(0) 推荐(0) 编辑
摘要: 今天刚升级到Xcode10,就遇到两个报错问题 错误一:Xcode 10: Build input file double-conversion cannot be found error: Build input file cannot be found: '../node_modules/rea 阅读全文
posted @ 2018-11-03 21:48 老榕树 阅读(1006) 评论(0) 推荐(0) 编辑
摘要: 一直是从事iOS的开发,现在研究下mac环境下reatNative的环境配置: 1. 安装HomeBlew(OS系统上的一个安装包管理器,安装后可以方便后续安装包的安装。) 终端命令: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/H 阅读全文
posted @ 2018-11-03 21:47 老榕树 阅读(648) 评论(0) 推荐(0) 编辑
摘要: 情况:根据https://github.com/rebeccahughes/react-native-device-info添加依赖库,运行.xcworkspacea项目后报错 解决:Delete node modules, then run npm install (or better yet y 阅读全文
posted @ 2018-11-03 21:46 老榕树 阅读(1002) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页