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
Since versions 1.11.0/2.1.0, jQuery has used a module wrapper with one strange
addition - in CommonJS environments, if a global `window` with a `document` was
not present, jQuery exported a factory accepting a `window` implementation and
returning jQuery.
This approach created a number of problems:
1. Properly typing jQuery would be a nightmare as the exported value depends on
the environment. In practice, typing definitions ignored the factory case.
2. Since we now use named exports for the jQuery module version, it felt weird
to have `jQuery` and `$` pointing to the factory instead of real jQuery.
Instead, for jQuery 4.0 we leverage the just added `exports` field in
`package.json` to expose completely separate factory entry points: one for the
full build, one for the slim one.
Exports definitions for `./factory` & `./factory-slim` are simpler than for `.`
and `./slim` - this is because it's a new entry point, we only expose a named
export and so there's no issue with just pointing Node.js to the CommonJS
version (we cannot use the module version for `import` from Node.js to avoid
double package hazard). The factory entry points are also not meant for the Web
browser which always has a proper `window` - and they'd be unfit for an
inclusion in a regular script tag anyway. Because of that, we also don't
generate minified versions of these entry points.
The factory files are not pushed to the CDN since they are mostly aimed
at Node.js.
Closesgh-5293
Copy file name to clipboardexpand all lines: README.md
+14
Original file line number
Diff line number
Diff line change
@@ -143,6 +143,20 @@ By default, jQuery generates a regular script JavaScript file. You can also gene
143
143
npm run build -- --filename=jquery.module.js --esm
144
144
```
145
145
146
+
##### Factory mode
147
+
148
+
By default, jQuery depends on a global `window`. For environments that don't have one, you can generate a factory build that exposes a function accepting `window` as a parameter that you can provide externally (see [`README` of the published package](build/fixtures/README.md) for usage instructions). You can generate such a factory using the `--factory` parameter:
149
+
150
+
```bash
151
+
npm run build -- --filename=jquery.factory.js --factory
152
+
```
153
+
154
+
This option can be mixed with others like `--esm` or `--slim`:
155
+
156
+
```bash
157
+
npm run build -- --filename=jquery.factory.slim.module.js --factory --esm --slim --dir="/dist-module"
158
+
```
159
+
146
160
#### Custom Build Examples
147
161
148
162
Create a custom build using `npm run build`, listing the modules to be excluded. Excluding a top-level module also excludes its corresponding directory of modules.
Copy file name to clipboardexpand all lines: build/fixtures/README.md
+6-23
Original file line number
Diff line number
Diff line change
@@ -136,16 +136,16 @@ Node.js doesn't understand AMD natively so this method is mostly used in a brows
136
136
137
137
### Node.js pre-requisites
138
138
139
-
For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/jsdom/jsdom). This can be useful for testing purposes.
139
+
For jQuery to work in Node, a `window` with a `document` is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/jsdom/jsdom). This can be useful for testing purposes.
140
140
141
-
jQuery checks for a `window` global with a `document` property and - if one is not present, as is the default in Node.js - it returns a factory accepting a `window` as a parameter instead.
141
+
For Node-based environments that don't have a global `window`, jQuery exposes a dedicated `jquery/factory` entry point.
142
142
143
143
To `import` jQuery using this factory, use the following:
144
144
145
145
```js
146
146
import { JSDOM } from"jsdom";
147
147
const { window } =newJSDOM( "" );
148
-
importjQueryFactoryfrom"jquery";
148
+
import{ jQueryFactory} from"jquery/factory";
149
149
const$=jQueryFactory( window );
150
150
```
151
151
@@ -154,27 +154,10 @@ or, if you use `require`:
154
154
```js
155
155
const { JSDOM } =require( "jsdom" );
156
156
const { window } =newJSDOM( "" );
157
-
const$=require( "jquery" )( window );
158
-
```
159
-
160
-
If the `window` global is present at the moment of the `import` or `require` of `"jquery"`, it will resolve to a jQuery instance, as in the browser. You can set such a global manually to simulate the behavior; with `import`:
To use the slim build of jQuery in Node.js, use `"jquery/slim"` instead of `"jquery"` in both `require` or `import` calls above.
163
+
To use the slim build of jQuery in Node.js, use `"jquery/slim"` instead of `"jquery"` in both `require` or `import` calls above. To use the slim build in Node.js with factory mode, use `jquery/factory-slim` instead of `jquery/factory`.
0 commit comments