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
Copy file name to clipboardexpand all lines: README.md
+25-48
Original file line number
Diff line number
Diff line change
@@ -8,51 +8,26 @@
8
8
9
9
<!-- /automd -->
10
10
11
-
Just-in-Time Typescript and ESM support for Node.js.
11
+
> This is the active development branch. Check out [jiti/v1](https://github.com/unjs/jiti/tree/v1) for legacy v1 docs and code.
12
12
13
-
> [!IMPORTANT]
14
-
> This is the development branch for jiti v2. Check out [jiti/v1](https://github.com/unjs/jiti/tree/v1) for latest stable docs and [unjs/jiti#174](https://github.com/unjs/jiti/issues/174) for the v2 roadmap.
You can globally register jiti using [global hooks](https://nodejs.org/api/module.html#initialize).
109
-
110
-
**Note:** This is an experimental approach and only tested to work on Node.js > 20. I don't recommend it and unless you have to, please prefer explicit method.
83
+
You can globally register jiti using [global hooks](https://nodejs.org/api/module.html#initialize). (important: Requires Node.js > 20)
111
84
112
85
```js
113
86
import"jiti/register";
@@ -119,6 +92,10 @@ Or:
119
92
node --import jiti/register index.ts
120
93
```
121
94
95
+
## 🎈 `jiti/native`
96
+
97
+
You can alias `jiti` to `jiti/native` to directly depend on runtime's [`import.meta.resolve`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import.meta/resolve) and dynamic [`import()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/import) support. This allows easing up the ecosystem transition to runtime native support by giving the same API of jiti.
98
+
122
99
## ⚙️ Options
123
100
124
101
### `debug`
@@ -149,9 +126,9 @@ By default (when is `true`), jiti uses `node_modules/.cache/jiti` (if exists) or
149
126
150
127
Runtime module cache (enabled by default).
151
128
152
-
Disabling allows editing code and importing same module multiple times.
129
+
Disabling allows editing code and importing the same module multiple times.
153
130
154
-
When enabled, jiti integrates with Node.js native CommonJS cachestore.
131
+
When enabled, jiti integrates with Node.js native CommonJS cache-store.
155
132
156
133
### `transform`
157
134
@@ -174,7 +151,7 @@ Add inline source map to transformed source for better debugging.
174
151
- Default: `false`
175
152
- Environment variable: `JITI_INTEROP_DEFAULT`
176
153
177
-
Return the `.default` export of a module at the top-level.
154
+
Return the `.default` export of a module at the toplevel.
178
155
179
156
### `alias`
180
157
@@ -184,15 +161,15 @@ Return the `.default` export of a module at the top-level.
184
161
185
162
You can also pass an object to the environment variable for inline config. Example: `JITI_ALIAS='{"~/*": "./src/*"}' jiti ...`.
186
163
187
-
Custom alias map used to resolve ids.
164
+
Custom alias map used to resolve IDs.
188
165
189
166
### `nativeModules`
190
167
191
168
- Type: Array
192
169
- Default: ['typescript`]
193
170
- Environment variable:`JITI_NATIVE_MODULES`
194
171
195
-
List ofmodules (within `node_modules`) to always use native require for them.
172
+
List ofmodules (within `node_modules`) to always use native `require()`for them.
0 commit comments