We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fb0bc6 commit b81ce8aCopy full SHA for b81ce8a
2 files changed
Readme.md
@@ -0,0 +1,21 @@
1
+# 📦 Установка
2
+
3
+```bash
4
+npm install requestify.js
5
+```
6
7
+Или через `yarn`:
8
9
10
+yarn add requestify.js
11
12
13
+# 🚨 Быстрое начало
14
15
+```ts
16
+import { HttpClient } from "requestify.js";
17
18
+const api = new HttpClient({ baseUrl: "https://api.example.com" });
19
20
+api.get("/users").then(console.log);
21
package.json
@@ -1,7 +1,6 @@
{
"name": "requestify.js",
"description": "Лёгкий и расширяемый HTTP-клиент с поддержкой middleware.",
- "private": true,
"version": "2.1.0",
"type": "module",
"repository": {
0 commit comments