Skip to content

Commit 7fb6c5c

Browse files
committed
chore: pushed to npm
1 parent 0f01221 commit 7fb6c5c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,28 @@
1111

1212
## Installation
1313
```bash
14-
npm install possum
14+
npm install possum-client
1515
```
1616

1717
Or using yarn:
1818

1919
```bash
20-
yarn add possum
20+
yarn add possum-client
2121
```
2222

2323
## Usage
2424
First, import and initialize `Possum` in your application.
2525

2626
```typescript
27-
import { performPossumRequest } from 'possum';
27+
import { performPossumRequest } from 'possum-client';
2828
```
2929

3030
### Making Requests
3131

3232
Use `performPossumRequest` to handle your HTTP requests:
3333

3434
```typescript
35-
import { performPossumRequest } from 'possum';
35+
import { performPossumRequest } from 'possum-client';
3636

3737
const requestData = {
3838
url: 'https://example.com/data',

demo/example.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { performPossumRequest } from "possum";
1+
import { performPossumRequest } from "possum-client";
22

33
const callApi = async () => {
44
try {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "possum",
2+
"name": "possum-client",
33
"version": "1.0.0",
44
"description": "Lightweight http client with reconciliation",
55
"repository": "https://github.com/FeezyHendrix/possum.git",

0 commit comments

Comments
 (0)