Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/behzodfaiziev/next-netkit
React Netkit for Network Management
https://github.com/behzodfaiziev/next-netkit
network nextjs react
Last synced: about 1 month ago
JSON representation
React Netkit for Network Management
- Host: GitHub
- URL: https://github.com/behzodfaiziev/next-netkit
- Owner: behzodfaiziev
- License: mit
- Created: 2024-09-19T12:38:13.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-02T03:34:17.000Z (about 2 months ago)
- Last Synced: 2024-10-03T00:49:38.796Z (about 1 month ago)
- Topics: network, nextjs, react
- Language: TypeScript
- Homepage: https://npmjs.com/package/next-netkit
- Size: 302 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Next-Netkit
Next-Netkit is a lightweight, injectable network manager built on top of Axios, designed to work
seamlessly with Clean Architecture and dependency injection frameworks like Inversify.
This package is ideal for both TypeScript and JavaScript projects and supports test-driven
development (TDD) by making network interactions mockable and testable.## Table of Contents
- [Features](#features)
- [Change-log](#change-log)
- [Installation](#installation)
- [Usage](#usage)
- [Setting Up the NetworkManager](#setting-up-the-networkmanager)
- [Token Management](#token-management)
- [Making Requests](#making-requests)
- [Request](#request)
- [RequestList](#requestlist)
- [RequestVoid](#requestvoid)
- [Making Requests according to the Clean Architecture](#making-requests-according-to-the-clean-architecture)
- [Error Handling with ApiException](#error-handling-with-apiexception-according-to-the-clean-architecture)
- [Integration with Inversify for Dependency Injection](#integration-with-inversify-for-dependency-injection)
- [Container Module Setup](#container-module-setup)
- [Merging Containers](#merging-containers)
- [License](#license)## Features
- **TypeScript-first**: Provides full type support and is easily usable in both TypeScript and
JavaScript projects.
- **Axios Integration**: Built on top of Axios for flexible HTTP requests.
- **Dependency Injection**: Supports `Inversify` for clean and testable architecture.
- **Error Handling**: Customizable error handling using the `ApiException` class.
- **Token Management**: Handles access and refresh tokens, stored in `localStorage`.## Change-log
You can find the changelog [here](CHANGELOG.md).
## Installation
```bash
npm install next-netkit axios inversify
```## Usage
### Setting Up the NetworkManager
You can create an instance of NetworkManager by passing the base URLs, mode
(development or production), Axios configuration options, and error-handling parameters.```typescript
import { NetworkErrorParams, NetworkManager } from "next-netkit";// Define your error-handling parameters
const networkErrorParams: NetworkErrorParams = {
messageKey: "message",
statusCodeKey: "status",
couldNotParseError: "Could not parse error",
jsonIsEmptyError: "JSON is empty",
noInternetError: "No internet connection",
jsonNullError: "JSON is null",
jsonUnsupportedObjectError: "JSON is unsupported object",
notMapTypeError: "Not map type",
};
/// In here NODE_ENV is an environment variable that is set to 'production' or 'development'
/// It may differ according to your project setup
const isTestMode = process.env.NODE_ENV !== "production";
// Create a new instance of NetworkManager
const networkManagerInstance = new NetworkManager({
baseUrl: "https://api.example.com", // Production base URL
devBaseUrl: "https://dev.example.com", // Development base URL
testMode: isTestMode, // Test mode: false (production), true (development)
baseOptions: {}, // Axios config options
errorParams: networkErrorParams, // Error parameters
isClientSideWeb: typeof window !== "undefined" && typeof localStorage !== "undefined",
});
```### Token Management
You can manage access tokens and refresh tokens using `setAccessToken` and `setRefreshToken`.
These tokens are automatically stored in `localStorage`and are automatically used in headers for
future requests.```typescript
// Set access token
networkManager.setAccessToken("your-access-token");
// Set refresh token
networkManager.setRefreshToken("your-refresh-token");
```## Making Requests:
### Request:
`request` is used to fetch or send data where a single response model is expected.
```typescript
// Example GET request to fetch a single model
const product = await networkManager.request({
method: RequestMethod.GET,
url: "/api/product/1",
});
/// response.data is of type BookEntity// Example POST request and get response
const signInResponse = await networkManager.request({
method: RequestMethod.POST,
url: "/api/auth/sign-in",
data: signInRequestDto,
});
/// signInResponse.data is of type SignInResponseDto
```### RequestList:
`requestList` is used when you expect the API to return an array of items.
```typescript
// Example GET request to fetch a list of products
const products = await networkManager.requestList({
method: RequestMethod.GET,
url: "/api/v1/products",
});
/// response.data is of type ProductModel[]
```This method ensures the response is an array and throws an error if a non-list is returned.
### RequestVoid:
`requestVoid` is used for requests where no data is expected in return (e.g., DELETE or POST
operations that don't return any data).```typescript
// Example DELETE request with no response body expected
await networkManager.requestVoid({
method: RequestMethod.DELETE,
url: "/api/v1/products/1",
});
```## Making Requests according to the Clean Architecture
Using the Clean Architecture, you can create a `RemoteDataSource` class that implements an
interface, which can be injected into your repository class.```typescript
/// src/feature-name/data/datasources/i-auth-remote-datasource.ts
export interface IAuthRemoteDataSource {
signIn(signInDto: SignInDto): Promise;
}/// src/feature-name/data/datasources/auth-remote-datasource.ts
@injectable()
export class AuthRemoteDataSource implements IAuthRemoteDataSource {
constructor(@inject("INetworkManager") private networkManager: INetworkManager) {}async signIn(dto: SignInDto): Promise {
const result = await this.networkManager.request({
method: RequestMethod.POST,
url: `/api/auth/sign-in`,
data: dto,
});this.networkManager.setAccessToken(result.accesToken);
return result;
}
}
```Now, you can inject the `IAuthRemoteDataSource` into your repository class and use it to make
network requests.```typescript
/// src/feature-name/data/repositories/auth-repository.ts
@injectable()
export class AuthRepository implements IAuthRepository {
constructor(
@inject("IAuthRemoteDataSource") private remoteDataSource: IAuthRemoteDataSource,
@inject("IAuthLocalDataSource") private localDataSource: IAuthLocalDataSource
) {}async signIn(dto: SignInDto): Promise {
try {
const response = await this.remoteDataSource.signIn(dto);
this.localDataSource.saveUser(response.user);
} catch (error) {
throw error;
}
}
}
```## Error Handling with ApiException according to the Clean Architecture
All errors returned by the network manager will be transformed into `ApiException` instances,
providing consistent error-handling across your app. Which are caught with a try-catch block.```typescript
/// AuthController.ts
@injectable()
export class AuthController {
constructor(@inject(SignIn) private signInUseCase: SignIn) {}async handleSignIn(dto: SignInDto): Promise {
try {
return await this.signInUseCase.execute(dto);
} catch (error) {
throw error;
}
}
}/// sign-in.tsx
/// ... other codes
const signInController = container.get(AuthController);const handleSignIn = async () => {
try {
const dto: SignInDto = { email, password };
setLoading(true);
await signInController.handleSignIn(dto);
router.push("/");
} catch (err) {
setLoading(false);
setError((err as ApiException).message);
}
};
/// ... other codes
```## Integration with Inversify for Dependency Injection
`Next-Netkit` works seamlessly with `Inversify` to enable dependency injection. Here’s how you can
set
it up:### Container Module Setup
Create a module for the network manager using `Inversify`.
```typescript
// network.container.ts
import { ContainerModule, interfaces } from "inversify";
import { INetworkManager, NetworkManager, NetworkErrorParams } from "next-netkit";// Define error-handling parameters
const networkErrorParams: NetworkErrorParams = {
messageKey: "message",
statusCodeKey: "status",
couldNotParseError: "Could not parse error",
jsonIsEmptyError: "JSON is empty",
noInternetError: "No internet connection",
jsonNullError: "JSON is null",
jsonUnsupportedObjectError: "JSON is unsupported object",
notMapTypeError: "Not map type",
};// Create NetworkManager instance
const networkManagerInstance = new NetworkManager(
"https://api.example.com",
"https://dev.example.com",
false,
{},
networkErrorParams
);// Create a network container module
const networkContainer = new ContainerModule((bind: interfaces.Bind) => {
bind("INetworkManager").toConstantValue(networkManagerInstance);
});export { networkContainer };
```### Merging Containers
You can merge multiple containers, including the network container, like so:
```typescript
// main.container.ts
import { Container } from "inversify";
import { authContainer } from "./auth/auth.container";
import { networkContainer } from "./network.container";const container = new Container();
// Merge containers
container.load(authContainer);
container.load(networkContainer);export { container };
```## License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.
### Dependencies
- **axios** - MIT License. See [axios repository](https://github.com/axios/axios) for license details.
- **inversify** - MIT License. See [inversify repository](https://github.com/inversify/InversifyJS) for license details.
- **reflect-metadata** - Apache-2.0 License. See [reflect-metadata repository](https://github.com/rbuckton/reflect-metadata) for license details.