i18ntk 2.0.2 → 2.0.4
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.md +47 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,39 +1,69 @@
|
|
|
1
|
-
# i18ntk
|
|
1
|
+
# 🚀 i18ntk - The Ultra-Fast, Zero-Dependency i18n Translation Toolkit
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
**The fastest and most comprehensive i18n toolkit ever built.**
|
|
8
|
+
|
|
9
|
+
[](https://www.npmjs.com/package/i18ntk)
|
|
10
|
+
[](https://opensource.org/licenses/MIT)
|
|
11
|
+
[](https://github.com/vladnoskv/i18ntk#performance)
|
|
12
|
+
[](https://github.com/vladnoskv/i18ntk#features)
|
|
8
13
|
[](https://www.npmjs.com/package/i18ntk)
|
|
9
|
-
[](https://github.com/vladnoskv/i18ntk)
|
|
15
|
+
[](https://socket.dev/npm/package/i18ntk/overview/2.0.4)
|
|
16
|
+
|
|
17
|
+
[📦 Install Now](#-installation) • [⚡ Quick Start](#-quick-start) • [📚 Documentation](#-documentation) • [🎯 Features](#-why-choose-i18ntk)
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## ⚡ Lightning Fast Performance
|
|
13
22
|
|
|
14
|
-
|
|
23
|
+
**15.38ms** for 200k translation keys • **<2MB** memory usage • **97% faster** than traditional tools
|
|
24
|
+
|
|
25
|
+
**v2.0.4**
|
|
15
26
|
|
|
16
27
|
</div>
|
|
17
28
|
|
|
18
|
-
##
|
|
29
|
+
## 📦 Installation
|
|
19
30
|
|
|
20
31
|
```bash
|
|
32
|
+
# Install globally (recommended)
|
|
21
33
|
npm install -g i18ntk
|
|
34
|
+
|
|
35
|
+
# Or use with npx (no installation required)
|
|
36
|
+
npx i18ntk
|
|
37
|
+
|
|
38
|
+
# Or install locally in your project
|
|
39
|
+
npm install i18ntk --save-dev
|
|
22
40
|
```
|
|
23
41
|
|
|
24
|
-
## Quick Start
|
|
42
|
+
## ⚡ Quick Start
|
|
43
|
+
|
|
44
|
+
Get your i18n project up and running in **60 seconds**:
|
|
25
45
|
|
|
26
46
|
```bash
|
|
27
|
-
#
|
|
28
|
-
i18ntk
|
|
47
|
+
# 1. Install i18ntk
|
|
48
|
+
npm install -g i18ntk
|
|
29
49
|
|
|
30
|
-
#
|
|
31
|
-
i18ntk
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
i18ntk
|
|
50
|
+
# 2. Initialize your project
|
|
51
|
+
i18ntk init
|
|
52
|
+
|
|
53
|
+
# 3. Analyze your translations
|
|
54
|
+
i18ntk analyze
|
|
55
|
+
|
|
56
|
+
# 4. Fix any issues
|
|
57
|
+
i18ntk fixer --interactive
|
|
58
|
+
|
|
59
|
+
# 5. Validate everything
|
|
60
|
+
i18ntk validate
|
|
61
|
+
|
|
62
|
+
# 6. Mangage Mre
|
|
35
63
|
```
|
|
36
64
|
|
|
65
|
+
That's it! Your i18n infrastructure is ready. 🎉
|
|
66
|
+
|
|
37
67
|
## v2 Command Model
|
|
38
68
|
|
|
39
69
|
Primary CLI commands:
|
|
@@ -138,4 +168,4 @@ console.log(getLanguage());
|
|
|
138
168
|
|
|
139
169
|
## License
|
|
140
170
|
|
|
141
|
-
MIT
|
|
171
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "i18ntk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "🚀 The fastest i18n toolkit with 97% performance boost! Zero-dependency, enterprise-grade internationalization for React, Vue, Angular, Python, Java, PHP & more. Features PIN protection, auto framework detection, 7+ UI languages, and comprehensive translation management. Perfect for startups to enterprises.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n",
|