UNPKG

8.25 kBMarkdownView Raw
1fast-async
2==========
3
4'fast-async' is a _Babel v6.x.x_ plugin that implements the ES7 keywords `async` and `await` using syntax transformation
5at compile-time, rather than generators.
6
7The main reason for using 'fast-async' as opposed to Babel's default implementation of async/await is
8performance (https://github.com/MatAtBread/nodent#performance) - it's 3-4 times faster in a browser/node, and
9as much as 10 times faster on a mobile browsers, mainly due to avoiding generators (and therefore regenerator).
10
11There's a simple test (that just makes sure the plugin works and generates code that runs). More complete
12test coverage is included with nodent.
13
14Because Babel parses the code, the ES7 extensions possible with nodent (`await` anywhere, `async return` and `async throw`) are not supported, however full implementation of `async function` containing `await` expressions is implemented.
15
16For _Babel v5.x.x_ install fast-async@1.0.3
17
18> v6.1.x
19fast-async@>=6.1.0 can use nodent v2 or v3 (and acorn v3 or v4). Nodent v3 has the option of generating code with Promises which needs no runtime at all, at the cost of size and speed. v6.1.x can also reference the runtime via an import (useRuntimeModule option), rather than include the source inline.
20
21Install
22-------
23```bash
24npm install fast-async --save
25```
26
27Usage
28-----
29
30Just include the plugin to the babel options. Minimal `.babelrc` example:
31```js
32{
33 "plugins": ["fast-async"]
34}
35```
36
37That's all. Neither `babel-plugin-transform-runtime` nor `babel-polyfill` required. Your application, once compiled, will probably needs nodent's runtime = see [below](#runtimepattern).
38
39With options:
40```js
41{
42 "plugins": [
43 ["fast-async", {
44 "env": {
45 "augmentObject": false,
46 "dontMapStackTraces": true,
47 "dontInstallRequireHook": true
48 },
49 "compiler": {
50 "promises": true,
51 "generators": false
52 },
53 "runtimePattern":null,
54 "useRuntimeModule":false
55 }]
56 ]
57}
58```
59
60Test
61----
62From the installation directory (e.g. node_modules/fast-async):
63```bash
64npm test
65```
66Options
67-------
68The plugin accepts the following options object, which itself is optional, as are all members. These are based on the options in nodent,
69but since much of the parsing is done by Babel some are unused.
70
71```js
72env:{
73 log:function(string), // Supplied routine to emit transformation warnings. Default: console.log
74 augmentObject:false, // Add the nodent utilities asyncify() and isThenable() to Object.prototype
75 dontMapStackTraces:true, // Don't install the stack trace hook that maps line numbers (default: true)
76 dontInstallRequireHook:false // Don't transform all JS files as they are loaded into node (default: true)
77},
78compiler:{
79 promises:true, // Use nodent's "Promises" mode. Set to false if your execution environment does not support Promises.
80 generators:false // Transform into 'Generators' (sub-optimal, but it works)
81},
82runtimePattern:null, // See below
83useRuntimeModule:false // See below
84```
85
86For more information on the compiler options, see [ES7 and Promises](https://github.com/matatbread/nodent#es7-and-promises) in the nodent documentation.
87
88> 6.1.x
89The dontMapStackTraces now defaults to `true` as having both nodent and babel map stack traces doesn't work well
90
91runtimePattern
92--------------
93By default, fast-async will put the nodent runtime into every file containing an `async` function or `await` expression.
94If your project is made up of more than one file, the constant redefinition of the runtime is a waste of time and space. You can
95specify that you want the runtime in particular file(s) by setting the 'runtimePattern' to a regular expression (in quotes).
96Only files that match the regular expression will have the runtime defined (which is global, so you only need it once).
97
98Note: At least one of the file(s) matching the "runtimePattern" must use either `await` or `async` as the runtime function (or `require('nodent-runtime')` if you set `"useRuntimeModule":true`) is only included for files that reference it.
99
100For example:
101
102```js
103"babel": {
104 "plugins": [
105 "syntax-async-functions",
106 ["fast-async",{
107 "runtimePattern":"test-input\\.js"
108 }]
109 ]
110}
111```
112Alternatively, if you set runtimePattern to `"directive"`, the statement `"use runtime-nodent";` will be replaced with the runtime during compilation.
113
114> v6.1.x
115If you specify the option `"useRuntimeModule":true`, the runtime is not included directly as source, but via an import of [nodent-runtime](https://github.com/MatAtBread/nodent-runtime), which is typically resolved to `require()` by babel. The nodent-runtime module must be added as a dependency in your target project. The runtime need only be included once in your entire project, and should precede any code that uses async or await.
116
117Useful Links
118------------
119
120* [nodent](https://github.com/MatAtBread/nodent)
121* [Babel plugins](http://babeljs.io/docs/advanced/plugins/)
122
123Online performance checkers:
124
125* [nodent](http://nodent.mailed.me.uk/#function%20pause%28%29%20{%0A%20%20%20%20return%20new%20Promise%28function%20%28%24return%2C%20%24error%29%20{%0A%20%20%20%20%20%20%20%20setTimeout%28function%20%28%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20%24return%280%29%3B%0A%20%20%20%20%20%20%20%20}%2C%200%29%3B%0A%20%20%20%20}%29%3B%0A}%0A%0Aasync%20function%20doNothing%28%29%20{%0A%20%20%20%20return%3B%0A}%0A%0Aasync%20function%20test%28%29%20{%0A%20%20%20%20var%20t%20%3D%20Date.now%28%29%3B%0A%20%20%20%20for%20%28var%20j%20%3D%200%3B%20j%20%3C%2050%3B%20j%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%201000%3B%20i%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20await%20doNothing%28%29%3B%0A%20%20%20%20%20%20%20%20}%0A%20%20%20%20%20%20%20%20await%20pause%28%29%3B%0A%20%20%20%20}%0A%20%20%20%20return%20Date.now%28%29%20-%20t%3B%0A}%0A%0Atest%28%29.then%28alert%29%3B%0A) 632ms (and shave off another 100ms by selecting 'Pure ES5' mode)
126* [babel](https://babeljs.io/repl/#?experimental=true&evaluate=true&loose=false&spec=false&code=function%20pause%28%29%20{%0A%20%20%20%20return%20new%20Promise%28function%20%28%24return%2C%20%24error%29%20{%0A%20%20%20%20%20%20%20%20setTimeout%28function%20%28%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20%24return%280%29%3B%0A%20%20%20%20%20%20%20%20}%2C%200%29%3B%0A%20%20%20%20}%29%3B%0A}%0A%0Aasync%20function%20doNothing%28%29%20{%0A%20%20%20%20return%3B%0A}%0A%0Aasync%20function%20test%28%29%20{%0A%20%20%20%20var%20t%20%3D%20Date.now%28%29%3B%0A%20%20%20%20for%20%28var%20j%20%3D%200%3B%20j%20%3C%2050%3B%20j%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%201000%3B%20i%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20await%20doNothing%28%29%3B%0A%20%20%20%20%20%20%20%20}%0A%20%20%20%20%20%20%20%20await%20pause%28%29%3B%0A%20%20%20%20}%0A%20%20%20%20return%20Date.now%28%29%20-%20t%3B%0A}%0A%0Atest%28%29.then%28alert%2Calert%29%3B%0A) 1877ms - 3x slower
127* [traceur](https://google.github.io/traceur-compiler/demo/repl.html#%2F%2F%20Options%3A%20--annotations%20--array-comprehension%20--async-functions%20--async-generators%20--exponentiation%20--export-from-extended%20--for-on%20--generator-comprehension%20--member-variables%20--proper-tail-calls%20--require%20--symbols%20--types%20%0Afunction%20pause%28%29%20{%0A%20%20%20%20return%20new%20Promise%28function%20%28%24return%2C%20%24error%29%20{%0A%20%20%20%20%20%20%20%20setTimeout%28function%20%28%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20return%20%24return%280%29%3B%0A%20%20%20%20%20%20%20%20}%2C%200%29%3B%0A%20%20%20%20}%29%3B%0A}%0A%0Aasync%20function%20doNothing%28%29%20{%0A%20%20%20%20return%3B%0A}%0A%0Aasync%20function%20test%28%29%20{%0A%20%20%20%20var%20t%20%3D%20Date.now%28%29%3B%0A%20%20%20%20for%20%28var%20j%20%3D%200%3B%20j%20%3C%2050%3B%20j%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%201000%3B%20i%2B%2B%29%20{%0A%20%20%20%20%20%20%20%20%20%20%20%20await%20doNothing%28%29%3B%0A%20%20%20%20%20%20%20%20}%0A%20%20%20%20%20%20%20%20await%20pause%28%29%3B%0A%20%20%20%20}%0A%20%20%20%20return%20Date.now%28%29%20-%20t%3B%0A}%0A%0Atest%28%29.then%28alert%2Calert%29%3B%20%0A) 2488ms - 4x slower