ranuts 0.1.0-alpha-21 → 0.1.0-alpha-23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.zh-CN.md +107 -0
- package/dist/{color-BgjAdNyp.js → color-CRb350Dh.js} +12 -46
- package/dist/index.js +2 -2
- package/dist/src/node/index.js +1 -1
- package/dist/src/utils/bom.d.ts +3 -3
- package/dist/src/utils/dom.d.ts +1 -1
- package/dist/src/utils/index.d.ts +1 -1
- package/dist/src/utils/index.js +9 -6
- package/dist/umd/index.umd.cjs +1 -1
- package/dist/umd/ml/ml.umd.cjs +1 -1
- package/dist/umd/node/node.umd.cjs +1 -1
- package/dist/umd/react/react.umd.cjs +1 -1
- package/dist/umd/utils/utils.umd.cjs +1 -1
- package/dist/umd/wasm/wasm.umd.cjs +1 -1
- package/dist/{ws-D7Jt2dzL.js → ws-BWAdpgk6.js} +1 -1
- package/package.json +1 -1
- package/readme.md +15 -1
|
@@ -6,7 +6,7 @@ import { Socket } from "node:net";
|
|
|
6
6
|
import http from "node:http";
|
|
7
7
|
import os from "node:os";
|
|
8
8
|
import fs, { createReadStream, createWriteStream, stat, readdir, readdirSync, statSync } from "node:fs";
|
|
9
|
-
import { F as FMT, w as strParse, u as setMime, h as getMime } from "./color-
|
|
9
|
+
import { F as FMT, w as strParse, u as setMime, h as getMime } from "./color-CRb350Dh.js";
|
|
10
10
|
import tty from "node:tty";
|
|
11
11
|
import process$1, { hrtime } from "node:process";
|
|
12
12
|
import childProcess from "node:child_process";
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ranuts
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Experimental utility library with commonly used functions and tools
|
|
4
4
|
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -12,6 +12,16 @@ Some commonly used functions and tools
|
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
15
|
+
## ⚠️ Important Notice
|
|
16
|
+
|
|
17
|
+
This is an **experimental utility library** in early development. While functional, it's primarily designed for learning and experimentation.
|
|
18
|
+
|
|
19
|
+
**Key points:**
|
|
20
|
+
|
|
21
|
+
- 🚧 **Early Development**: Features are still being developed and refined
|
|
22
|
+
- 🧪 **Experimental**: APIs may change frequently
|
|
23
|
+
- 📚 **Learning Focus**: Primarily for learning JavaScript/TypeScript utilities
|
|
24
|
+
|
|
15
25
|
## Install
|
|
16
26
|
|
|
17
27
|
Using npm:
|
|
@@ -76,6 +86,10 @@ document.body.appendChild(html);
|
|
|
76
86
|
<script>
|
|
77
87
|
```
|
|
78
88
|
|
|
89
|
+
## Contributing
|
|
90
|
+
|
|
91
|
+
We welcome contributions from learners and developers! This is an experimental project, so please be patient with the development process.
|
|
92
|
+
|
|
79
93
|
## Contributors
|
|
80
94
|
|
|
81
95
|
<a href="https://github.com/chaxus/ran/graphs/contributors">
|