@incloodsolutions/devkit 0.0.1
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 +32 -0
- package/dist/index.cjs +881 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +755 -0
- package/dist/index.d.ts +755 -0
- package/dist/index.js +863 -0
- package/dist/index.js.map +1 -0
- package/package.json +65 -0
package/README.md
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# @incloodsolutions/node-toolkit
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@incloodsolutions/node-toolkit)
|
|
4
|
+
[](https://www.npmjs.com/package/@incloodsolutions/node-toolkit)
|
|
5
|
+
[](https://www.npmjs.com/package/@incloodsolutions/node-toolkit)
|
|
6
|
+
[](https://www.npmjs.com/package/@incloodsolutions/node-toolkit)
|
|
7
|
+
|
|
8
|
+
A Node.js-focused extension of `@incloodsolutions/toolkit`, offering utilities for server-side applications.
|
|
9
|
+
Includes async helpers, file system utilities, configuration management, and runtime tools optimised for building scalable Node.js backends and CLI tools.
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
## 📦 Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @incloodsolutions/node-toolkit
|
|
17
|
+
# or
|
|
18
|
+
yarn add @incloodsolutions/node-toolkit
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## 🚀 Usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { readJsonFile } from "@incloodsolutions/node-toolkit";
|
|
25
|
+
|
|
26
|
+
async function main() {
|
|
27
|
+
const config = await readJsonFile("./config.json");
|
|
28
|
+
console.log(config);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
main();
|
|
32
|
+
```
|