Skip to content

Commit 6307e37

Browse files
committed
readme
1 parent e6c8c05 commit 6307e37

File tree

8 files changed

+55
-3
lines changed

8 files changed

+55
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
<br />
66
Open-source development utilities for modern web applications
77
<br />
8-
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg">
8+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
9+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
10+
</a>
11+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
12+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg">
13+
</a>
914
</p>
1015

1116
A comprehensive collection of TypeScript utilities for working with schemas, JSON-LD, API clients, and general-purpose development tools.

packages/casing/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<br />
66
Casing utils
77
<br />
8-
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
8+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
9+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
10+
</a>
11+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
912
</p>
1013

1114
## install

packages/fetch-api-client/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<p align="center">
44
<img src="https://raw.githubusercontent.com/hyperweb-io/dev-utils/refs/heads/main/docs/img/logo.svg" width="80"><br />
55
Fetch API Client
6+
<br />
7+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
8+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
9+
</a>
10+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
11+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
12+
</a>
613
</p>
714

815
`@interweb/fetch-api-client` is a lightweight and flexible HTTP client for interacting with RESTful APIs in Node.js or the Browser. It supports common HTTP methods such as GET, POST, PUT, PATCH, and DELETE, with customizable options for headers, query parameters, and timeouts.

packages/find-pkg/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
<br />
66
Find the package.json file from within a build/package
77
<br />
8-
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
8+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
9+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
10+
</a>
11+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/></a>
912
</p>
1013

1114
This TypeScript module provides a function to locate, read, and parse the `package.json` file from the current directory or any of its parent directories.

packages/http-errors/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<p align="center">
44
<img src="https://raw.githubusercontent.com/hyperweb-io/dev-utils/refs/heads/main/docs/img/logo.svg" width="80"><br />
55
@interweb/http-errors
6+
<br />
7+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
8+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
9+
</a>
10+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
11+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
12+
</a>
613
</p>
714

815
## install

packages/jsonld-tools/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# `jsonldjs`
22

3+
<p align="center">
4+
<img src="https://raw.githubusercontent.com/hyperweb-io/dev-utils/refs/heads/main/docs/img/logo.svg" width="80">
5+
<br />
6+
JSON-LD Tooling
7+
<br />
8+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
9+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
10+
</a>
11+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
12+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
13+
</a>
14+
</p>
15+
316
A powerful, generic JSON-LD builder with comprehensive entity and property filtering capabilities. Provides both immutable configuration building and mutable graph processing with a fluent interface.
417

518
## Installation

packages/node-api-client/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<p align="center">
44
<img src="https://raw.githubusercontent.com/hyperweb-io/dev-utils/refs/heads/main/docs/img/logo.svg" width="80"><br />
55
Node.js API Client
6+
<br />
7+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
8+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
9+
</a>
10+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
11+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
12+
</a>
613
</p>
714

815
`@interweb/node-api-client` is a lightweight and flexible HTTP client for interacting with RESTful APIs in Node.js. It supports common HTTP methods such as GET, POST, PUT, PATCH, and DELETE, with customizable options for headers, query parameters, and timeouts.

packages/schema-ts-cli/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
<p align="center">
44
<img src="https://raw.githubusercontent.com/hyperweb-io/dev-utils/refs/heads/main/docs/img/logo.svg" width="80"><br />
55
`schema-typescript` CLI
6+
<br />
7+
<a href="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml">
8+
<img height="20" src="https://github.com/hyperweb-io/dev-utils/actions/workflows/ci.yml/badge.svg" />
9+
</a>
10+
<a href="https://github.com/hyperweb-io/dev-utils/blob/main/LICENSE-MIT">
11+
<img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"/>
12+
</a>
613
</p>
714

815
## install

0 commit comments

Comments
 (0)