Skip to content

Commit

Permalink
Added IANA HTTP Headers and Methods
Browse files Browse the repository at this point in the history
  • Loading branch information
halvardssm committed Apr 28, 2024
1 parent 1c9cada commit 4f5bab3
Show file tree
Hide file tree
Showing 5 changed files with 2,068 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov"
},
"workspaces": [
"./encoding"
"./encoding",
"./http"
]
}
15 changes: 15 additions & 0 deletions http/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# @stdext/http

The HTTP package contains utilities for fetch and HTTP functions

## Entrypoints

### Header

The header module contains helpers for HTTP headers such as the IANA HTTP
headers.

### Method

The method module contains helpers for HTTP methods such as the IANA HTTP
methods.
9 changes: 9 additions & 0 deletions http/deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"version": "0.0.2",
"name": "@stdext/http",
"lock": false,
"exports": {
"./header": "./header.ts",
"./method": "./method.ts"
}
}
Loading

0 comments on commit 4f5bab3

Please sign in to comment.