1.1.1 ā€¢ Published 2 years ago

arpeggios v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Arpeggios

REST promise based HTTP client library built on top of axios and cachios packages suggesting easy to use and extensively customizable CRUD service and type safe API requests

Installation

Using npm

  npm install arpeggios

Using yarn

  yarn add arpeggios

Features

šŸ’Ž Service with built in CRUD Methods:

  • getAll
  • getById
  • deleteAll
  • deleteById
  • post
  • patch
  • put

šŸŽØ Custom Services with option to add additional methods extending out CRUD methods that comes built in with the service

šŸ§± Services Built On fully configured axios or cachios Instances

āš™ļø Convenient Configuration with custom routes, request configuration, and payload data (body property of request) key custom define

šŸ›”ļø Type Safe API fetching requests, payloads, and responses

Usage / Examples

šŸ§± Basic

1) Create Instance

import arpeggios from "arpeggios";

const instance = arpeggios.create({ baseURL: "http://localhost:5000" });

2) Create Service

import { instance } from "./instance";
import { User } from "./types";

const userService = instance.createService<UserWithId, User>("user");

3) Use Service

  • GET

// GET http://localhost:5000/user
async function getUsers() {
  const users: User[] = await userService.getAll();
}

// GET http://localhost:5000/user/:id
async function getUserById(id: ObjectId) {
  // default id type of service is mongodb ObjectId
  const user: User = await userService.getById(id); 
}
  • DELETE

// DELETE http://localhost:5000/user
async function deleteAllUsers() {
  const usersDeleted: User[] = await (await userService.deleteAll()).data;
}

// DELETE http://localhost:5000/user/:id
async function deleteUserById(id: ObjectId) {
  const userDeleted: User = await (await userService.deleteById(id)).data;
}
  • POST

// POST http://localhost:5000/user
async function createUser(newUser: User) {
  const userCreated: User = await (await userService.post(newUser)).data;
}
  • PATCH

// PATCH http://localhost:5000/user
async function updateUser(partialUser: Partial<User>) {
  const updatedUser: User = await (await userService.patch(partialUser)).data;
}
  • PUT

// PUT http://localhost:5000/user
async function updateUser(partialUser: Partial<User>) {
  const updatedUser: User = await (await userService.put(partialUser)).data;
}

šŸŽØ Custom

1) Create Extended Service

import { ArpeggiosService } from "arpeggios";

import { instance } from "./arpeggiosInstance";

export class UserService extends ArpeggiosService<UserWithId, User> {
  constructor(config?: ServiceConfig) {
    super("user", instance, config);
    /* prefix for request url is "user" */
  }

  public getByFullname = this.methods.getByParam<UserWithId, string>("fullName");
  public isEmailTaken = this.methods.getByParam<boolean, string>(["email", "taken"]);
}

2) Use Extended Service

const userService = new UserService();

async function getUserByFullname(fullname: string) {
  const user: User = await (await userService.getByFullname(fullname)).data;
}

async function isEmailTaken(email: string) {
  const isEmailTaken: boolean = await (await userService.isEmailTaken(email)).data;
}

Configuration

šŸ“€ Arpeggios Instance

Create Arpeggios Instance based axios or cachios Instance with arpeggios.create() Function

import arpeggios from "arpeggios";

/* Customised Arpeggios Instance can be based on
   AxiosInstance, AxiosRequestConfig or CachiosInstance */

const arpeggiosInstance = arpeggios.create(/* Here goes instance or config*/);

Options to configure arpeggios.create()

type InstanceConfig = AxiosInstance | CachiosInstance | AxiosRequestConfig;

šŸ“€ Arpeggios Service

Methods Types:

Set The following Generic Types to control the requests types of response data, payload data, and id param.

  • Response Data
  • Payload Data
  • Id Type

By doing so, Typescript will force you to give it the parameters with matching types when calling the service methods or will recognize alone the response data type for more comfortable auto-completion in future

class ArpeggiosService<ResponseData = any, PayloadData = Response, IdType = ObjectId>

Example:

import { instance } from "./arpeggiosInstance";
import { UserWithId, User } from "./types";

const userService = instance.createService<UserWithId, User, string>("user");

// ResponseData - UserWithId
// PayloadData - User
// IdType - string

Configure Service with createService() Method:

1) Methods REST Routes

You may want to change few of the built in service method route to extend the prefix based on the API you are working with.

Do it easily by configuring an extended route for each method you want.

Note: method with no configured extended route will send request to basic route: baseUrl/prefix or baseUrl/prefix/param

Example:

import { instance } from "./arpeggiosInstance";

const userService = instance.createService<User>("user", {
  /* All Service built in CRUD methods route control ( string | string[] ) */
  routes: {
    getAll: ["get", "all"], // GET http://localhost:5000/user/get/all
    deleteAll: "all",       // DELETE http://localhost:5000/user/all
    deleteById: "id",       // DELETE http://localhost:5000/user/id/:id
    ...,
    post: "create",         // POST http://localhost:5000/user/create
    patch: "update"         // POST http://localhost:5000/user/update
  }
});

2) Request Config

You can set a requestConfig of type CachiosRequestConfig for attaching metadata to a request (like headers, params, etc.)

requestConfig can be set for each method seperatly or make one general config for all methods

Note: if a method has its own specific requestConfig, it will be used over the general one

Example:

import { instance } from "./arpeggiosInstance";

const userService = instance.createService<UserWithId, User, number>("user", {
  requestConfigByMethod: {
    /* Request Config Per Method */ getAll: { params: { page: 1, size: 10 } },
    getById: { maxRedirects: 3 },
  },
  requestConfig: {
    /* Request Config For All Methods */ headers: { Authentication: "Bearer Header" },
  },
});

3) Payload Data Key

For HTTP methods with payload (Post, Patch, Put) you can set a payloadKey for setting the payload data on the key you want inside the body of the request

// By Default
request: {
  body: data,
  ...
}

// After Setting payloadKey
request: {
  body: {
    [payloadKey]: data
  },
  ...
}

payloadKey can be set for each HTTP payload method seperatly or make one general config for all methods

Note: if a method has its own specific payloadKey, it will be used over the general one

Example:

import { instance } from "./arpeggiosInstance";

const userService = instance.createService<UserWithId, User, number>("user", {
  payloadKey: "update",
  payloadKeyByMethod: { post: "data" },
});

License

MIT

1.1.1

2 years ago

1.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago