- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/vczero/rn-cook
- 软件文档: https://github.com/vczero/rn-cook/blob/master/README.md
- 官方下载: https://github.com/vczero/rn-cook/archive/master.zip
软件介绍
很多时候,使用React Native AsyncStorage很难调试,既没有命令行也没有UI界面,尤其是在真机调试阶段,无法确保AsyncStorage里存储的数据是否可用,因此构建了UI Debugger显得十分必要, RN-COOK就是这么一款调试工具。
使用:
$ npm install rn-cook --save
//1) install module
$ npm install rn-cook --save
//2) import module
import RNCook from 'rn-cook';
//3) write component on bottom of view container
<RNCook/>
//4) for example
<ScrollView style={styles.flex_1}>
<View style={styles.logo}></View>
<Text style={styles.fontTitle}>
Read
</Text>
<Recommend/>
<View style={styles.hr}></View>
<Text style={styles.fontTitle}>
Study
</Text>
<Grade navigator={this.props.navigator}/>
<View style={styles.hr}></View>
<Text style={styles.fontTitle}>
Category
</Text>
<Category navigator={this.props.navigator}/>
<CopyRight navigator={this.props.navigator}/>
<RNCook/>
</ScrollView>截图展示:
Table
Command
Edit
深入理解计算机系统
Randal E.Bryant、David O'Hallaron / 龚奕利、雷迎春 / 中国电力出版社 / 2004-5-1 / 85.00元
从程序员的视角,看计算机系统! 本书适用于那些想要写出更快、更可靠程序的程序员。通过掌握程序是如何映射到系统上,以及程序是如何执行的,读者能够更好的理解程序的行为为什么是这样的,以及效率低下是如何造成的。粗略来看,计算机系统包括处理器和存储器硬件、编译器、操作系统和网络互连环境。而通过程序员的视角,读者可以清晰地明白学习计算机系统的内部工作原理会对他们今后作为计算机科学研究者和工程师的工作有......一起来看看 《深入理解计算机系统》 这本书的介绍吧!
