diff --git a/docs/en/getting-started.html b/docs/en/getting-started.html index 255405c6..5ffeba80 100644 --- a/docs/en/getting-started.html +++ b/docs/en/getting-started.html @@ -32,13 +32,13 @@ app.use.processRequest.bind(metroBundlerServer), ); -app.listen(8081);
build(serverOptions, bundleOptions)
#Given a set of options that you would typically pass to a server, plus a set of options specific to the bundle itself, a bundle will be built. The return value is a Promise that resolves to an object with two properties, code
and map
. This is useful at build time.
assetExts (Array<string>)
: List of extensions that should be considered as assets. Assets are non-JavaScript files that can be required with a require
call, and that the server can return back. Defaults to a sane, comprehensive list of image, video, audio, document and font formats.assetRegistryPath (string)
: Root where to look for the assets. See assetExts
for more information.blacklistRE (RegExp)
: Regular expression matching files that do not have to be processed when recursively crawling the tree of dependencies from the root. Defaults to a non-matching regular expression (meaning all modules are processed).cacheVersion (string)
: Used to invalidate caches when changes happen on the transform pipeline. By default, transformed files are cached for speed.enableBabelRCLookup (boolean)
: True if .babelrc
files coming from other Node modules have to be looked up or not (i.e. if their transforms have to be applied to the files contained within the module).getPolyfills ((platform) => Array<string>)
: Method that returns a list of paths to polyfills to be added to the bundle. The platform (if provided) will be passed as the only argument of the method. Polyfills are guaranteed to be loaded before any code, and in the provided order in the array.getTransformOptions ((mainModuleName, options, getDependenciesOf) => Promise<Array<string>>)
:getUseGlobalHotkey (() => boolean)
: Method that returns whether the global hotkey should be used or not. Useful especially on Linux servers.maxWorkers (number)
: Maximum amount of workers to use when transforming and bundling. By default it uses an amount computed using the available cores of the processor (approximately 50% of them).platforms (Array<string>)
: Array of platforms supported. Currently you can pass 'ios'
and 'android'
there. This information will be used for bundle generation (both the code included and the format to be served).postProcessModules ((modules, entryPoints) => Array<Module>)
: Allows to post process the list of modules, either by adding, removing or modifying the existing ones.projectRoots (Array<string>)
: List of all directories to look for source files. When asking for a particular bundle, each of the roots will be examined to see if the requested file exists in one of these.reporter (Reporter)
: a reporter instance that will be used to report progress. Various reporters are provided with Metro Bundler,resetCache (boolean)
: Metro bundler holds an internal, persisted cache where all the transformed modules (using the provided transformer in transformModulePath
) is stored. If the file does not change, the transformed file will be served. When passing true
to resetCache
, all of the cache will be thrown away.silent (boolean)
: Whether bundling progress should be reported to the reporter given in the reporter
option. Defaults to false
.sourceExts
: List of extensions that should be considered as source code. Source code files are files that will be transformed and bundled all at once. Defaults to JS and JSON extensions.transformModulePath (string)
: Full path of the JS file that contains the transformer. Read further on the transformer section for more information. The default transformer is a no-op one: it just outputs the code as it gets input.dev (boolean)
: optional boolean indicating if the bundle has to be built in development mode. Implies things like setting __DEV__
to true
. Defaults to false
.entryFile (string)
: entry point for bundling the file.inlineSourceMap (boolean)
: indicates whether the source map is provided inlined with the bundle (as a bas64 encoded URL), or in a separate file. When provided as a separate file, the URL where it will be found can be customized with sourceMapUrl
. Defaults to false
.minify (boolean)
: whether code should be minified. Defaults to false
.platform (string)
: if a list of platforms is provided, a particular platform can be passed.sourceMapUrl (string)
: URL where the source map can be found. It defaults to the same same URL as the bundle, but changing the extension from .bundle
to .map
. When inlineSourceMap
is true
, this property has no effect.The server has the ability to serve assets, bundles and source maps for those bundles.
In order to request an asset, you can freely use the require
method as if it was another JS file. The server will treat this specific require
calls and make them return the path to that file. When an asset is requested (an asset is recognized by its extension, which has to be on the assetExts
array) it is generally served as-is.
However, the server is also able to serve specific assets depending on the platform and on the requested size (in the case of images). The way you specify the platform is via the dotted suffix (e.g. .ios
) and the resolution via the at suffix (e.g. @2x
). This is transparently handled for you when using require
.
Any JS file can be used as the root for a bundle request. The file will be looked into each of the project roots provided (via the projectRoots
property of the server). All files that are required by the root will be recursively included. In order to request a bundle, just change the extension from .js
to .bundle
. Options for building the bundle are passed as query parameters (all optional).
dev
: build the bundle in development mode or not. Maps 1:1 to the dev
setting of the bundles. Pass true
or false
as strings into the URL.platform
: platform requesting the bundle. Can be ios
or android
. Maps 1:1 to the platform
setting of the bundles.minify
: whether code should be minified or not. Maps 1:1 to the minify
setting of the bundles. Pass true
or false
as strings into the URL.excludeSource
: whether sources should be included in the source map or not. Pass true
or false
as strings into the URL.For instance, requesting http://localhost:8081/foo/bar/baz.bundle?dev=true&platform=ios
will create a bundle out of foo/bar/baz.js
for iOS in development mode.
Source maps are built for each bundle by using the same URL as the bundle (thus, the same as the JS file acting as a root). This will only work when inlineSourceMap
is set to false
. All options you passed to the bundle will be added to the source map URL; otherwise, they wouldn't match.
The JavaScript transformer (transformModulePath
) is the place where JS code will be manipulated; useful for calling Babel. The transformer can export two methods:
transform(module)
#Mandatory method that will transform code. The object received has information about the module being transformed (e.g its path, code...) and the returned object has to contain an ast
key that is the AST representation of the transformed code. The default shipped transformer does the bare minimum amount of work by just parsing the code to AST:
const babylon = require('babylon'); +app.listen(8081);
build(serverOptions, bundleOptions)
#Given a set of options that you would typically pass to a server, plus a set of options specific to the bundle itself, a bundle will be built. The return value is a Promise that resolves to an object with two properties, code
and map
. This is useful at build time.
assetExts (Array<string>)
: List of extensions that should be considered as assets. Assets are non-JavaScript files that can be required with a require
call, and that the server can return back. Defaults to a sane, comprehensive list of image, video, audio, document and font formats.assetRegistryPath (string)
: Root where to look for the assets. See assetExts
for more information.blacklistRE (RegExp)
: Regular expression matching files that do not have to be processed when recursively crawling the tree of dependencies from the root. Defaults to a non-matching regular expression (meaning all modules are processed).cacheVersion (string)
: Used to invalidate caches when changes happen on the transform pipeline. By default, transformed files are cached for speed.enableBabelRCLookup (boolean)
: True if .babelrc
files coming from other Node modules have to be looked up or not (i.e. if their transforms have to be applied to the files contained within the module).getPolyfills ((platform) => Array<string>)
: Method that returns a list of paths to polyfills to be added to the bundle. The platform (if provided) will be passed as the only argument of the method. Polyfills are guaranteed to be loaded before any code, and in the provided order in the array.getTransformOptions ((mainModuleName, options, getDependenciesOf) => Promise<Array<string>>)
:getUseGlobalHotkey (() => boolean)
: Method that returns whether the global hotkey should be used or not. Useful especially on Linux servers.maxWorkers (number)
: Maximum amount of workers to use when transforming and bundling. By default it uses an amount computed using the available cores of the processor (approximately 50% of them).platforms (Array<string>)
: Array of platforms supported. Currently you can pass 'ios'
and 'android'
there. This information will be used for bundle generation (both the code included and the format to be served).postProcessModules ((modules, entryPoints) => Array<Module>)
: Allows to post process the list of modules, either by adding, removing or modifying the existing ones.projectRoots (Array<string>)
: List of all directories to look for source files. When asking for a particular bundle, each of the roots will be examined to see if the requested file exists in one of these.reporter (Reporter)
: a reporter instance that will be used to report progress. Various reporters are provided with Metro Bundler,resetCache (boolean)
: Metro bundler holds an internal, persisted cache where all the transformed modules (using the provided transformer in transformModulePath
) is stored. If the file does not change, the transformed file will be served. When passing true
to resetCache
, all of the cache will be thrown away.silent (boolean)
: Whether bundling progress should be reported to the reporter given in the reporter
option. Defaults to false
.sourceExts
: List of extensions that should be considered as source code. Source code files are files that will be transformed and bundled all at once. Defaults to JS and JSON extensions.transformModulePath (string)
: Full path of the JS file that contains the transformer. Read further on the transformer section for more information. The default transformer is a no-op one: it just outputs the code as it gets input.dev (boolean)
: optional boolean indicating if the bundle has to be built in development mode. Implies things like setting __DEV__
to true
. Defaults to false
.entryFile (string)
: entry point for bundling the file.inlineSourceMap (boolean)
: indicates whether the source map is provided inlined with the bundle (as a bas64 encoded URL), or in a separate file. When provided as a separate file, the URL where it will be found can be customized with sourceMapUrl
. Defaults to false
.minify (boolean)
: whether code should be minified. Defaults to false
.platform (string)
: if a list of platforms is provided, a particular platform can be passed.sourceMapUrl (string)
: URL where the source map can be found. It defaults to the same same URL as the bundle, but changing the extension from .bundle
to .map
. When inlineSourceMap
is true
, this property has no effect.The server has the ability to serve assets, bundles and source maps for those bundles.
In order to request an asset, you can freely use the require
method as if it was another JS file. The server will treat this specific require
calls and make them return the path to that file. When an asset is requested (an asset is recognized by its extension, which has to be on the assetExts
array) it is generally served as-is.
However, the server is also able to serve specific assets depending on the platform and on the requested size (in the case of images). The way you specify the platform is via the dotted suffix (e.g. .ios
) and the resolution via the at suffix (e.g. @2x
). This is transparently handled for you when using require
.
Any JS file can be used as the root for a bundle request. The file will be looked into each of the project roots provided (via the projectRoots
property of the server). All files that are required by the root will be recursively included. In order to request a bundle, just change the extension from .js
to .bundle
. Options for building the bundle are passed as query parameters (all optional).
dev
: build the bundle in development mode or not. Maps 1:1 to the dev
setting of the bundles. Pass true
or false
as strings into the URL.platform
: platform requesting the bundle. Can be ios
or android
. Maps 1:1 to the platform
setting of the bundles.minify
: whether code should be minified or not. Maps 1:1 to the minify
setting of the bundles. Pass true
or false
as strings into the URL.excludeSource
: whether sources should be included in the source map or not. Pass true
or false
as strings into the URL.For instance, requesting http://localhost:8081/foo/bar/baz.bundle?dev=true&platform=ios
will create a bundle out of foo/bar/baz.js
for iOS in development mode.
Source maps are built for each bundle by using the same URL as the bundle (thus, the same as the JS file acting as a root). This will only work when inlineSourceMap
is set to false
. All options you passed to the bundle will be added to the source map URL; otherwise, they wouldn't match.
The JavaScript transformer (transformModulePath
) is the place where JS code will be manipulated; useful for calling Babel. The transformer can export two methods:
transform(module)
#Mandatory method that will transform code. The object received has information about the module being transformed (e.g its path, code...) and the returned object has to contain an ast
key that is the AST representation of the transformed code. The default shipped transformer does the bare minimum amount of work by just parsing the code to AST:
const babylon = require('babylon7'); module.exports.transform = (file: {filename: string, src: string}) => { const ast = babylon.parse(code, {sourceType: 'module'}); return {ast}; -};
If you would like to plug-in babel, you can simply do that by passing the code to it:
const {transform} = require('babel-core'); +};
If you would like to plug-in babel, you can simply do that by passing the code to it:
const {transform} = require('@babel/core'); module.exports.transform = file => { return transform(file.src, {