ae6cd177de
Summary: Introduces a new mechanism to build source maps that allows us to use real mapping segments instead of just mapping line-by-line. This mechanism is only used when building development bundles to improve the debugging experience in Chrome. The new mechanism takes advantage of a new feature in babel-generator that exposes raw mapping objects. These raw mapping objects are converted to arrays with 2, 4, or 5 for the most compact representation possible. We no longer generate a source map for the bundle that maps each line to itself in conjunction with configuring babel generator to retain lines. Instead, we create a source map with a large mappings object produced from the mappings of each individual file in conjunction with a “carry over” – the number of preceding lines in the bundle. The implementation makes a couple of assumptions that hold true for babel transform results, e.g. mappings being in the order of the generated code, and that a block of mappings always belongs to the same source file. In addition, the implementation avoids allocation of objects and strings at all costs. All calculations are purely numeric, and base64 vlq produces numeric ascii character codes. These are written to a preallocated buffer objects, which is turned to a string only at the end of the building process. This implementation is ~5x faster than using the source-map library. In addition to providing development source maps that work better, we can now also produce individual high-quality source maps for production builds and combine them to an “index source map”. This approach is unfeasable for development source maps, because index source map consistently crash Chrome. Better production source maps are useful to get precise information about source location and symbol names when symbolicating stack traces from crashes in production. Reviewed By: jeanlauliac Differential Revision: D4382290 fbshipit-source-id: 365a176fa142729d0a4cef43edeb81084361e54d |
||
---|---|---|
react-packager | ||
.eslintrc | ||
README.md | ||
babelRegisterOnly.js | ||
blacklist.js | ||
defaults.js | ||
launchPackager.bat | ||
launchPackager.command | ||
package.json | ||
packager.sh | ||
react-native-xcode.sh | ||
rn-cli.config.js | ||
transformer.js |
README.md
React Native Packager
React Native Packager is a project similar in scope to browserify or webpack, it provides a CommonJS-like module system, JavaScript compilation (ES6, Flow, JSX), bundling, and asset loading.
The main difference is the Packager's focus on compilation and bundling speed. We aim for a sub-second edit-reload cycles. Additionally, we don't want users -- with large code bases -- to wait more than a few seconds after starting the packager.
The main deviation from the node module system is the support for our
proprietary module format known as @providesModule
. However, we
discourage people from using this module format because going forward we
want to completely separate our infrastructure from React Native and
provide an experience most JavaScript developers are familiar with,
namely the node module format. We want to even go further, and let you
choose your own packager and asset pipeline or even integrate into
your existing infrastructure.
React Native users need not to understand how the packager work, however, this documentation might be useful for advanced users and people who want to fix bugs or add features to the packager (patches welcome!).
HTTP interface
The main way you'd interact with the packager is via the HTTP interface. The following is the list of endpoints and their respective functions.
/path/to/moduleName.bundle
Does the following in order:
- parse out
path/to/moduleName
- add a
.js
suffix to the path - looks in your project root(s) for the file
- recursively collects all the dependencies from an in memory graph
- runs the modules through the transformer (might just be cached)
- concatenate the modules' content into a bundle
- responds to the client with the bundle (and a SourceMap URL)
/path/to/moduleName.map
- if the package has been previously generated via the
.bundle
endpoint then the source map will be generated from that package - if the package has not been previously asked for, this will go
through the same steps outlined in the
.bundle
endpoint then generate the source map.
Note that source map generation currently assumes that the code has been compiled with jstransform, which preserves line and column numbers which allows us to generate source maps super fast.
/path/to/moduleName.(map|bundle) query params
You can pass options for the bundle creation through the query params,
if the option is boolean 1/0
or true/false
is accepted.
Here are the current options the packager accepts:
dev
boolean, defaults to true: sets a global__DEV__
variable which will effect how the React Native core libraries behave.minify
boolean, defaults to false: whether to minify the bundle.runModule
boolean, defaults to true: whether to require your entry point module. So if you requestedmoduleName
, this option will add arequire('moduleName')
the end of your bundle.inlineSourceMap
boolean, defaults to false: whether to inline source maps.
/debug
This is a page used for debugging, it offers a link to a single page :
- Cached Packages: which shows you the packages that's been already generated and cached
Programmatic API
The packager is made of two things:
- The core packager (which we're calling ReactPackager)
- The scripts, devtools launcher, server run etc.
ReactPackager is how you mainly interact with the API.
var ReactPackager = require('./react-packager');
ReactPackager.buildBundle(serverOptions, bundleOptions)
Builds a bundle according to the provided options.
serverOptions
projectRoots
array (required): Is the roots where your JavaScript file will existblacklistRE
regexp: Is a pattern to ignore certain paths from the packagerpolyfillModuleName
array: Paths to polyfills you want to be included at the start of the bundlecacheVersion
string: used in creating the cache fileresetCache
boolean, defaults to false: whether to use the cache on disktransformModulePath
string: Path to the module used as a JavaScript transformernonPersistent
boolean, defaults to false: Whether the server should be used as a persistent deamon to watch files and update itselfgetTransformOptions
function: A function that acts as a middleware for generating options to pass to the transformer based on the bundle being built.reporter
object (required): An object with a single functionupdate
that is called when events are happening: build updates, warnings, errors.
bundleOptions
entryFile
string (required): the entry file of the bundle, relative to one of the roots.dev
boolean (defaults totrue
): sets a global__DEV__
variable which will effect how the React Native core libraries behave.minify
boolean: Whether to minify code and apply production optimizations.runModule
boolean (defaults totrue
): whether to require your entry point module.inlineSourceMap
boolean, defaults to false: whether to inline source maps.platform
string: The target platform for the buildgenerateSourceMaps
boolean: Whether to generate source maps.sourceMapUrl
string: The url of the source map (will be appended to the bundle).
Debugging
To get verbose output when running the packager, define an environment variable:
export DEBUG=RNP:*
You can combine this with other values, e.g. DEBUG=babel,RNP:*
. Under the hood this uses the debug
package, see its documentation for all the available options.
The /debug
endpoint discussed above is also useful.
FAQ
Can I use this in my own non-React Native project?
Yes. It's not really tied to React Native, however feature development is informed by React Native needs.
Why didn't you use webpack?
We love webpack, however, when we tried on our codebase it was slower than our developers would like it to be. You can find more discussion about the subject here.