Skip to content

Commit 4e60353

Browse files
authoredSep 25, 2024··
chore: update readme
1 parent 27899c2 commit 4e60353

File tree

1 file changed

+25
-48
lines changed

1 file changed

+25
-48
lines changed
 

‎README.md

+25-48
Original file line numberDiff line numberDiff line change
@@ -8,51 +8,26 @@
88

99
<!-- /automd -->
1010

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.
1212
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.
13+
## 🌟 Used in
14+
15+
[Docusaurus](https://docusaurus.io/), [ESLint](https://github.com/eslint/eslint), [FormKit](https://formkit.com/), [Histoire](https://histoire.dev/), [Knip](https://knip.dev/), [Nitro](https://nitro.unjs.io/), [Nuxt](https://nuxt.com/), [PostCSS loader](https://github.com/webpack-contrib/postcss-loader), [Rsbuild](https://rsbuild.dev/), [Size Limit](https://github.com/ai/size-limit), [Slidev](https://sli.dev/), [Tailwindcss](https://tailwindcss.com/), [Tokenami](https://github.com/tokenami/tokenami), [UnoCSS](https://unocss.dev/), [WXT](https://wxt.dev/), [Winglang](https://www.winglang.io/), [Graphql code generator](https://the-guild.dev/graphql/codegen), [Lingui](https://lingui.dev/), [Scaffdog](https://scaff.dog/), [Storybook](https://storybook.js.org), [...UnJS ecosystem](https://unjs.io/), [...60M+ npm monthly downloads](https://npm.chart.dev/jiti), [...6M+ public repositories](https://github.com/unjs/jiti/network/dependents).
1516

1617
## ✅ Features
1718

18-
- Seamless Typescript and ESM syntax support
19+
- Seamless Typescript and ESM syntax support for Node.js
1920
- Seamless interoperability between ESM and CommonJS
2021
- Synchronous API to replace `require()`
2122
- Asynchronous API to replace `import()`
22-
- ESM Loader support
2323
- Super slim and zero dependency
24+
- Custom resolve aliases
2425
- Smart syntax detection to avoid extra transforms
2526
- Node.js native require cache integration
2627
- Filesystem transpile with hard disk caches
27-
- Custom resolve aliases
28+
- ESM Loader support
2829
- JSX support (opt-in)
2930

30-
## 🌟 Used by
31-
32-
- [Docusaurus](https://docusaurus.io/)
33-
- [FormKit](https://formkit.com/)
34-
- [Histoire](https://histoire.dev/)
35-
- [Knip](https://knip.dev/)
36-
- [Nitro](https://nitro.unjs.io/)
37-
- [Nuxt](https://nuxt.com/)
38-
- [PostCSS loader](https://github.com/webpack-contrib/postcss-loader)
39-
- [Rsbuild](https://rsbuild.dev/)
40-
- [Size Limit](https://github.com/ai/size-limit)
41-
- [Slidev](https://sli.dev/)
42-
- [Tailwindcss](https://tailwindcss.com/)
43-
- [Tokenami](https://github.com/tokenami/tokenami)
44-
- [UnoCSS](https://unocss.dev/)
45-
- [WXT](https://wxt.dev/)
46-
- [Winglang](https://www.winglang.io/)
47-
- [Graphql code generator](https://the-guild.dev/graphql/codegen)
48-
- [Lingui](https://lingui.dev/)
49-
- [Scaffdog](https://scaff.dog/)
50-
- [Storybook](https://storybook.js.org)
51-
- [...UnJS ecosystem](https://unjs.io/)
52-
- [...58M+ npm monthly downloads](https://www.npmjs.com/package/jiti)
53-
- [...5.5M+ public repositories](https://github.com/unjs/jiti/network/dependents)
54-
- [ pr welcome add yours ]
55-
5631
## 💡 Usage
5732

5833
### CLI
@@ -61,35 +36,35 @@ You can use `jiti` CLI to quickly run any script with Typescript and native ESM
6136

6237
```bash
6338
npx jiti ./index.ts
64-
65-
# or
66-
67-
jiti ./index.ts
6839
```
6940

7041
### Programmatic
7142

72-
```js
73-
// --- Initialize ---
43+
Initialize a jiti instance:
7444

45+
```js
7546
// ESM
7647
import { createJiti } from "jiti";
7748
const jiti = createJiti(import.meta.url);
7849

7950
// CommonJS
8051
const { createJiti } = require("jiti");
8152
const jiti = createJiti(__filename);
53+
```
8254
83-
// --- ESM Compatible APIs ---
55+
Import (async) and resolve with ESM compatibility:
8456
57+
```js
8558
// jiti.import() acts like import() with Typescript support
8659
await jiti.import("./path/to/file.ts");
8760

8861
// jiti.esmResolve() acts like import.meta.resolve() with additional features
8962
const resolvedPath = jiti.esmResolve("./src");
63+
```
9064
91-
// --- CJS Compatible APIs ---
65+
CommonJS (sync - legacy):
9266
67+
```js
9368
// jiti() acts like require() with Typescript and (non async) ESM support
9469
jiti("./path/to/file.ts");
9570

@@ -105,9 +80,7 @@ const jiti = createJiti(import.meta.url, { debug: true });
10580
10681
### Register global ESM loader
10782
108-
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)
11184
11285
```js
11386
import "jiti/register";
@@ -119,6 +92,10 @@ Or:
11992
node --import jiti/register index.ts
12093
```
12194
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+
12299
## ⚙️ Options
123100
124101
### `debug`
@@ -149,9 +126,9 @@ By default (when is `true`), jiti uses `node_modules/.cache/jiti` (if exists) or
149126
150127
Runtime module cache (enabled by default).
151128
152-
Disabling allows editing code and importing same module multiple times.
129+
Disabling allows editing code and importing the same module multiple times.
153130
154-
When enabled, jiti integrates with Node.js native CommonJS cache store.
131+
When enabled, jiti integrates with Node.js native CommonJS cache-store.
155132
156133
### `transform`
157134
@@ -174,7 +151,7 @@ Add inline source map to transformed source for better debugging.
174151
- Default: `false`
175152
- Environment variable: `JITI_INTEROP_DEFAULT`
176153
177-
Return the `.default` export of a module at the top-level.
154+
Return the `.default` export of a module at the top level.
178155
179156
### `alias`
180157
@@ -184,15 +161,15 @@ Return the `.default` export of a module at the top-level.
184161
185162
You can also pass an object to the environment variable for inline config. Example: `JITI_ALIAS='{"~/*": "./src/*"}' jiti ...`.
186163
187-
Custom alias map used to resolve ids.
164+
Custom alias map used to resolve IDs.
188165
189166
### `nativeModules`
190167
191168
- Type: Array
192169
- Default: ['typescript`]
193170
- Environment variable: `JITI_NATIVE_MODULES`
194171

195-
List of modules (within `node_modules`) to always use native require for them.
172+
List of modules (within `node_modules`) to always use native `require()` for them.
196173

197174
### `transformModules`
198175

0 commit comments

Comments
 (0)
Please sign in to comment.