You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 31, 2018. It is now read-only.
* e.g. `node_modules/foo -> ../app/components/foo.js`
204
+
Require that Module source text has at least one `import` or `export` declaration.
205
+
A module with only an `import` declaration and no `export` declaration is valid.
206
+
Modules, that do not export anything, should specify an `export {}` to make
207
+
intentions clear and avoid accidental parse errors while removing `import`
208
+
declarations. The `export {}` is **not** new syntax and does **not** export an
209
+
empty object. It is simply the standard way to specify exporting nothing.
210
+
211
+
A package opts-in to the Module goal by specifying `"module"` as the parse goal
212
+
field *(name not final)* in its `package.json`. Package dependencies are not
213
+
affected by the opt-in and may be a mix of CJS and ES module packages. If a parse
214
+
goal is not specified, then attempt to parse source text as the preferred goal
215
+
*(Script for now since most modules are CJS)*. If there is a parse error that
216
+
may allow another goal to parse, then parse as the other goal, and so on. After
217
+
this, the goal is known unambiguously and the environment can safely perform
218
+
initialization without the possibility of the source text being run in the wrong
219
+
goal.
220
+
221
+
<em>Note: While the ES2015 specification
222
+
[does not forbid](http://www.ecma-international.org/ecma-262/6.0/#sec-forbidden-extensions)
223
+
this extension, Node wants to avoid acting as a rogue agent. Node has a TC39
224
+
representative, [@bmeck](https://github.com/bmeck), to champion this proposal.
225
+
A specification change or at least an official endorsement of this Node proposal
226
+
would be welcomed. If a resolution is not possible, this proposal will fallback
227
+
to the previous [`.mjs` file extension proposal](https://github.com/nodejs/node-eps/blob/5dae5a537c2d56fbaf23aaf2ae9da15e74474021/002-es6-modules.md#51-determining-if-source-is-an-es-module).</em>
228
+
229
+
#### 5.1.1 Goal Detection
230
+
231
+
##### Parse (source, goal, throws)
232
+
233
+
The abstract operation to parse source text as a given goal.
234
+
235
+
1. Bootstrap `source` for `goal`.
236
+
2. Parse `source` as `goal`.
237
+
3. If success, return `true`.
238
+
4. If `throws`, throw exception.
239
+
5. Return `false`.
240
+
241
+
##### Operation
242
+
243
+
1. If a package parse goal is specified, then
244
+
1. Let `goal` be the resolved parse goal.
245
+
2. Call `Parse(source, goal, true)` and return.
246
+
247
+
2. Else fallback to multiple parse.
248
+
1. If `Parse(Source, Script, false)` is `true`, then
249
+
1. Return.
250
+
2. Else
251
+
1. Call `Parse(Source, Module, true)`.
252
+
253
+
*Note: A host can choose either goal to parse first and may change their order
254
+
over time or as new parse goals are introduced. Feel free to swap the order of
255
+
Script and Module.*
256
+
257
+
#### 5.1.2 Implementation
258
+
259
+
To improve performance, host environments may want to specify a goal to parse
260
+
first. This can be done in several ways:<br>
261
+
cache on disk, a command line flag, a manifest file, HTTP header, file extension, etc.
262
+
263
+
#### 5.1.3 Tooling Concerns
264
+
265
+
Some tools, outside of Node, may not have access to a JS parser *(Bash programs,
266
+
some asset pipelines, etc.)*. These tools generally operate on files as opaque
267
+
blobs / plain text files and can use the techniques, listed under
268
+
[Implementation](#512-implementation), to get parse goal information.
300
269
301
270
### 5.2. ES Import Path Resolution
302
271
@@ -308,55 +277,43 @@ In summary:
308
277
309
278
```javascript
310
279
// looks at
311
-
// ./foo.mjs
312
280
// ./foo.js
313
281
// ./foo/package.json
314
-
// ./foo/index.mjs
315
282
// ./foo/index.js
316
283
// etc.
317
284
import'./foo';
318
285
```
319
286
320
287
```javascript
321
288
// looks at
322
-
// /bar.mjs
323
289
// /bar.js
324
290
// /bar/package.json
325
-
// /bar/index.mjs
326
291
// /bar/index.js
327
292
// etc.
328
293
import'/bar';
329
294
```
330
295
331
296
```javascript
332
297
// looks at:
333
-
// ./node_modules/baz.mjs
334
298
// ./node_modules/baz.js
335
299
// ./node_modules/baz/package.json
336
-
// ./node_modules/baz/index.mjs
337
300
// ./node_modules/baz/index.js
338
301
// and parent node_modules:
339
-
// ../node_modules/baz.mjs
340
302
// ../node_modules/baz.js
341
303
// ../node_modules/baz/package.json
342
-
// ../node_modules/baz/index.mjs
343
304
// ../node_modules/baz/index.js
344
305
// etc.
345
306
import'baz';
346
307
```
347
308
348
309
```javascript
349
310
// looks at:
350
-
// ./node_modules/abc/123.mjs
351
311
// ./node_modules/abc/123.js
352
312
// ./node_modules/abc/123/package.json
353
-
// ./node_modules/abc/123/index.mjs
354
313
// ./node_modules/abc/123/index.js
355
314
// and parent node_modules:
356
-
// ../node_modules/abc/123.mjs
357
315
// ../node_modules/abc/123.js
358
316
// ../node_modules/abc/123/package.json
359
-
// ../node_modules/abc/123/index.mjs
360
317
// ../node_modules/abc/123/index.js
361
318
// etc.
362
319
import'abc/123';
@@ -408,19 +365,6 @@ In the case that an `import` statement is unable to find a module, Node should
408
365
make a **best effort** to see if `require` would have found the module and
409
366
print out where it was found, if `NODE_PATH` was used, if `HOME` was used, etc.
410
367
411
-
#### 5.2.3. Shipping both ES and CJS
412
-
413
-
When a `package.json` main is encountered, file extension searches are used to
414
-
provide a means to ship both ES and CJS variants of packages. If we have two
415
-
entry points `index.mjs` and `index.js` setting `"main":"./index"` in
416
-
`package.json` will make Node pick up either, depending on what is supported.
417
-
418
-
##### 5.2.3.1. Excluding main
419
-
420
-
Since `main` in `package.json` is entirely optional even inside of npm
421
-
packages, some people may prefer to exclude main entirely in the case of using
422
-
`./index` as that is still in the Node module search algorithm.
423
-
424
368
### 5.3. `this` in ES modules
425
369
426
370
ES modules will have a `this` value set to `undefined`. This
@@ -456,7 +400,7 @@ module.exports = {
456
400
You will grab `module.exports` when performing an ES import.
457
401
458
402
```javascript
459
-
// es.mjs
403
+
// es.js
460
404
461
405
// grabs the namespace
462
406
import*asbazfrom'./cjs.js';
@@ -486,7 +430,7 @@ module.exports = null;
486
430
You will grab `module.exports` when performing an ES import.
487
431
488
432
```javascript
489
-
// es.mjs
433
+
// es.js
490
434
importfoofrom'./cjs.js';
491
435
// foo = null;
492
436
@@ -508,7 +452,7 @@ module.exports = function two() {
508
452
You will grab `module.exports` when performing an ES import.
0 commit comments