nhb-toolbox 4.10.46 → 4.10.48

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.
Files changed (2) hide show
  1. package/README.md +31 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # NHB Toolbox
2
2
 
3
+ > “I solve problems you face daily”
4
+
3
5
  <p>
4
6
  <a href="https://www.npmjs.com/package/nhb-toolbox" aria-label="Downloads">
5
7
  <img src="https://img.shields.io/npm/dm/nhb-toolbox.svg?label=downloads&style=for-the-badge&color=red" alt="Downloads" />
@@ -8,18 +10,27 @@
8
10
  <img src="https://img.shields.io/npm/v/nhb-toolbox.svg?style=for-the-badge&color=teal" alt="Version" />
9
11
  </a>
10
12
  <a href="https://www.npmjs.com/package/nhb-toolbox" aria-label="License">
11
- <img src="https://img.shields.io/npm/l/nhb-toolbox.svg?label=license&style=for-the-badge&color=gold" alt="License" />
13
+ <img src="https://img.shields.io/npm/l/nhb-toolbox.svg?label=license&style=for-the-badge&color=orange" alt="License" />
12
14
  </a>
13
15
  </p>
14
16
 
15
- ## _“I solve problems you face daily”_
17
+ ## TypeScript Utility Library
18
+
19
+ **NHB Toolbox** provides battle-tested utilities for professional TypeScript development. Carefully crafted to solve common challenges with elegant, production-ready solutions:
20
+
21
+ - **Helper Functions & Classes**: Reusable solutions for everyday tasks
22
+ - **Type Guards & Predicates**: Runtime safety with perfect type inference
23
+ - **Validation Utilities**: Robust data validation patterns
24
+ - **Zero Dependencies**: Framework-agnostic implementation using only native TS/JS with 0 external package
16
25
 
17
- - A versatile collection of smart, efficient, and reusable utility functions for everyday development needs.
26
+ > [Explore Full Documentation →](https://nhb-toolbox.vercel.app/)
18
27
 
19
- Full Docs: [Official Documentation](https://nhb-toolbox.vercel.app/)
28
+ ---
20
29
 
21
30
  ## Install
22
31
 
32
+ Choose your preferred package manager:
33
+
23
34
  ```shell
24
35
  npm i nhb-toolbox
25
36
  ```
@@ -32,10 +43,26 @@ pnpm add nhb-toolbox
32
43
  yarn add nhb-toolbox
33
44
  ```
34
45
 
46
+ ---
47
+
48
+ ## Key Features
49
+
50
+ - **Type-Safe Utilities**:Fully typed for perfect TypeScript integration with strict type checking
51
+ - **Modular Design**: Tree-shaking friendly – import only what you need with zero bloat
52
+ - **Zero Dependencies**: No external dependencies - works with any JS/TS framework
53
+ - **IDE Support**: Full type hints with JSDoc-powered API references in your editor
54
+ - **Comprehensive Documentation**: Learn with real-world use cases on [documentation site](https://nhb-toolbox.vercel.app/)
55
+ - **Battle-Tested**: Reliable utilities refined through real-world production use
56
+ - **Optimized for Production**: Focused on clean, efficient implementations
57
+
58
+ ---
59
+
35
60
  ## License
36
61
 
37
62
  This project is licensed under the [Apache License 2.0](./LICENSE) with the following additional requirement:
38
63
 
64
+ **Additional Requirement:**
65
+
39
66
  > Any fork, derivative work, or redistribution of this project must include clear attribution to [**Nazmul Hassan**](https://github.com/nazmul-nhb) in both the source code and any publicly available documentation.
40
67
 
41
68
  You are free to use, modify, and distribute this project under the terms of the Apache 2.0 License, provided that appropriate credit is given.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nhb-toolbox",
3
- "version": "4.10.46",
3
+ "version": "4.10.48",
4
4
  "description": "A versatile collection of smart, efficient, and reusable utility functions and classes for everyday development needs.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",