Skip to content

Commit 5f86959

Browse files
authored
Core: Add more info about named exports
Also, fix an example importing from `jquery/src/css.js` as that is supposed to use named exports now. Closes gh-5328
1 parent 93ca49e commit 5f86959

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

build/fixtures/README.md

+23-5
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,30 @@ Below are some of the most common ways to include jQuery.
2121

2222
or, to use the jQuery ECMAScript module:
2323

24+
```html
25+
<script type="module">
26+
import { $ } from "https://code.jquery.com/[email protected]";
27+
</script>
28+
```
29+
30+
or:
31+
32+
```html
33+
<script type="module">
34+
import { jQuery } from "https://code.jquery.com/[email protected]";
35+
</script>
36+
```
37+
38+
All jQuery modules export named `$` & `jQuery` tokens; the further examples will just show `$`. The default import also works:
39+
2440
```html
2541
<script type="module">
2642
import $ from "https://code.jquery.com/[email protected]";
2743
</script>
2844
```
2945

46+
However, named imports provide better interoperability across tooling and are therefore recommended.
47+
3048
Sometimes you don’t need AJAX, or you prefer to use one of the many standalone libraries that focus on AJAX requests. And often it is simpler to use a combination of CSS, class manipulation or the Web Animations API. Similarly, many projects opt into relying on native browser promises instead of jQuery Deferreds. Along with the regular version of jQuery that includes the `ajax`, `callbacks`, `deferred`, `effects` & `queue` modules, we’ve released a “slim” version that excludes these modules. You can load it as a regular script:
3149

3250
```html
@@ -37,7 +55,7 @@ or as a module:
3755

3856
```html
3957
<script type="module">
40-
import $ from "https://code.jquery.com/[email protected]";
58+
import { $ } from "https://code.jquery.com/[email protected]";
4159
</script>
4260
```
4361

@@ -60,7 +78,7 @@ Now, the following will work to get the full version:
6078

6179
```html
6280
<script type="module">
63-
import $ from "jquery";
81+
import { $ } from "jquery";
6482
// Use $ here
6583
</script>
6684
```
@@ -69,7 +87,7 @@ and the following to get the slim one:
6987

7088
```html
7189
<script type="module">
72-
import $ from "jquery/slim";
90+
import { $ } from "jquery/slim";
7391
// Use $ here
7492
</script>
7593
```
@@ -93,7 +111,7 @@ npm install jquery
93111
In the script, including jQuery will usually look like this:
94112

95113
```js
96-
import $ from "jquery";
114+
import { $ } from "jquery";
97115
```
98116

99117
If you need to use jQuery in a file that's not an ECMAScript module, you can use the CommonJS syntax:
@@ -115,7 +133,7 @@ Remember that some modules have other dependencies (e.g. the `event` module depe
115133
Example usage:
116134

117135
```js
118-
import $ from "jquery/src/css.js"; // adds the `.css()` method
136+
import { $ } from "jquery/src/css.js"; // adds the `.css()` method
119137
import "jquery/src/event.js"; // adds the `.on()` method; pulls "selector" as a dependency
120138
$( ".toggle" ).on( "click", function() {
121139
$( this ).css( "color", "red" );

0 commit comments

Comments
 (0)