Improvements to documentation
See original GitHub issueHere are some thoughts on things we need to cover in the docs
- Recipes for various setups, e.g. typescript
- Setting up
babel-plugin-module-resolveras an alternative to https://blog.callstack.io/a-cure-for-relative-requires-in-react-native-2b263cecf0f6 - Transpiling modules under
node_modules - More detailed docs regarding how it differs from React Native packager
- Manually configuring XCode or Gradle to use Haul instead of RN packager
If you have more ideas, please comment below/edit this post if you have access.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:3
- Comments:7 (4 by maintainers)
Top Results From Across the Web
4 Steps for Documentation Improvement - Production Machining
Quality documentation can be improved. Whether you use a simple word processing program such as Word to document your processes, or a more ......
Read more >How do I document improvement? - LinkedIn
Use a survey to define VOC (voice of customer) ; Use a PPM (parts per million defective) quality report to identify process issues...
Read more >3 Tips to Improve Documentation Productivity - Nuance Blog
1. Make accuracy the cornerstone of documentation process improvement · 2. Factor mobility into your documentation workflow · 3. Acknowledge ...
Read more >Five ways to improve clinical documentation and bridge the ...
Show how improving documentation in these areas would benefit the patient, practice, or population. Educate providers before establishing a program. Clinicians ...
Read more >A Quality Improvement Project to Improve Documentation and ...
Nursing paper documentation of limitations of life-sustaining therapies increased sequentially from 0% to 88% during plan-do-study-act cycles.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I’d be willing to create a PR with a typescript recipe if there’s interest.
Hey @satya164, just wanted to chime in and say that it’s also possible to avoid long relative requires by using Webpack. Here’s a Haul config I’ve been using that allows
.jsxin React Native and allows torequireanything insidesrc(e.g.,require('components/MyButton')).More fine-grained control like
babel-plugin-module-resolvercan also be achieved using theresolve.aliasoption in Webpack but just usingresolve.modulesworked for my use case.I’m also planning on adding
react-hot-loaderto support HMR for functional stateless components in React Native (currently unsupported). I wouldn’t mind contributing to the docs adding a couple of recipes.