npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

next-netkit

v0.3.4

Published

Network manager

Downloads

1,530

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

  • 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.

Installation

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.

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 localStorageand are automatically used in headers for future requests.

// Set access token
networkManager.setAccessToken('your-access-token');
// Set refresh token
networkManager.setRefreshToken('your-refresh-token');

Making Requests

Next-Netkit makes HTTP requests using the request method, which wraps Axios' request functionality. You can make requests like this:

// Example GET request
const response = await networkManager.request<BookEntity>({
  method: 'GET',
  url: '/api/v1/book/1',
});
/// response.data is of type BookEntity


// Example POST request
const signInResponse = await networkManager.request<SignInResponseDto>({
  method: 'POST',
  url: '/api/v1/auth/sign_in',
  data: signInRequestDto,
});
/// signInResponse.data is of type SignInResponseDto

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.

/// src/feature-name/data/datasources/i-auth-remote-datasource.ts
export interface IAuthRemoteDataSource {
  signIn(signInDto: SignInDto): Promise<SignInResponseDto>;
}

/// 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<SignInResponseDto> {
    const result = await this.networkManager.request<SignInResponseDto>({
      method: '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.

/// 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<void> {
    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.

/// AuthController.ts
@injectable()
export class AuthController {
  constructor(
          @inject(SignIn) private signInUseCase: SignIn,
  ) {}

  async handleSignIn(dto: SignInDto): Promise<void> {
    try {
      return await this.signInUseCase.execute(dto);
    } catch (error) {
      throw error;
    }
  }

}

/// sign-in.tsx
/// ... other codes
const signInController = container.get<AuthController>(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.

// 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>('INetworkManager').toConstantValue(networkManagerInstance);
});

export {networkContainer};

Merging Containers

You can merge multiple containers, including the network container, like so:

// 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 ISC License.