DEV Community

Cover image for TypeScript SDK Development: A 5-year-old could follow this step-by-step ~ Part 2, folder structure - integrating API
Syed Muhammad Yaseen
Syed Muhammad Yaseen

Posted on

TypeScript SDK Development: A 5-year-old could follow this step-by-step ~ Part 2, folder structure - integrating API

Helloooooooo!

Hope you're doing great! This is SMY! πŸ‘‹ Let's Jump right in πŸš€

Part 1: https://dev.to/smy/typescript-sdk-development-a-5-year-old-could-follow-this-step-by-step-part-1-our-first-mvp-1cif

Part 3: https://dev.to/smy/typescript-sdk-development-a-5-year-old-could-follow-this-step-by-step-part-3-making-test-apps-4n3c

Part 4: https://dev.to/smy/typescript-sdk-development-a-5-year-old-could-follow-this-step-by-step-part-4-publishing-to-npm-48o6

Part 5: https://dev.to/smy/typescript-sdk-development-a-5-year-old-could-follow-this-step-by-step-part-5-cdn-for-browsers-237a

This is Part 2 of our SDK development series where we will dive into creating a folder structure and integrating an API

Heads up: any attribute or method starting from # is a private field. Private fields are truly private and are not emitted on the console log, d.ts, or elsewhere.

Contents:

  • ⚑ Creating a folder strucutre

  • ⚑ Coding an example for fetching users from API

Step 1: Creating a folder structure

Image description

apis - for all external APIs

models - for all our interfaces

services - for business logic code

index.ts - our entry point

example-apps - contains our test apps for React, Browser, Node

Step 2: Create a HTTP Client

In src/services create a HttpClient.service.ts file and paste the following content:

export class HttpClient {
  static #baseUrl: string = "https://jsonplaceholder.typicode.com";

  constructor() {}

  async get(endpoint: string) {
    try {
      const response = await fetch(`${HttpClient.#baseUrl}${endpoint}`);
      if (!response.ok) {
        throw new Error(`HTTP error! Status: ${response.status}`);
      }
      return await response.json();
    } catch (error) {
      console.error("Error fetching data:", error);
      throw error;
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

We have created a basic HTTP Client and using jsonplaceholder as our testing API endpoint.

Step 3: Creating a User Model

In src/models create a User.model.ts file and paste the following content:

export interface User {
  id: number;
  username: string;
  email: string;
}
Enter fullscreen mode Exit fullscreen mode

Step 4: Create an API to fetch Users

In src/apis create a Users.api.ts file and paste the following content:

import type { User } from "../models/User.model.ts";
import { HttpClient } from "../services/HttpClient.service.ts";

export class UsersAPI {
  #httpClient: HttpClient;

  constructor() {
    this.#httpClient = new HttpClient();
  }

  async getUsers(): Promise<User[]> {
    try {
      const users = await this.#httpClient.get("/users");
      return users as User[];
    } catch (error) {
      console.error("Error fetching users:", error);
      throw error;
    }
  }
}
Enter fullscreen mode Exit fullscreen mode

Created a basic example of fetching users from an external endpoint.

Step 5: Create an Entry Point

Inside src/index.ts paste the following content:

import { UsersAPI } from "./apis/Users.api.ts";

class SDK {
  static #instance: SDK;
  #usersAPI: UsersAPI;

  constructor() {
    this.#usersAPI = new UsersAPI();
  }

  public static getInstance(): SDK {
    if (!SDK.#instance) {
      SDK.#instance = new SDK();
    }
    return SDK.#instance;
  }

  public fetchUsers() {
    return this.#usersAPI.getUsers();
  }
}

export default SDK.getInstance();
Enter fullscreen mode Exit fullscreen mode

A basic entry point of SDK.

This is a Singleton Class to have 1 existence throughout our application. Later useful when initializing with properties like API key once in application.

Step 6: Build the SDK

Add the following script to your package.json

 "build": "tsup ./src/index.ts --watch"
Enter fullscreen mode Exit fullscreen mode

--watch the command will watch for any changes to the directory and automatically build your SDK.

Now run:

npm run build
Enter fullscreen mode Exit fullscreen mode

Step 7: Create a test Node App

In example-apps create a index.js file and paste the following content:

import sdk from "../../dist/index.js";

console.log(await sdk.fetchUsers());
Enter fullscreen mode Exit fullscreen mode

Now run the file with node:

node index.js
Enter fullscreen mode Exit fullscreen mode

Your output should be looking like the following:

Image description

Congrats πŸŽ‰πŸ₯³ πŸš€πŸš€πŸš€ We Just Built and Ran our first proper SDK!

Wrapping Up:

We Just completed the basic steps to build and run our proper SDK. Head over to Part 3, where we will integrate our first test React app, Browser app, Node app, and Legacy Node app πŸš€

.....

Now you're equipped with knowledge to build your own SDK. Happy coding! πŸš€

That's it, folks! hope it was a good read for you. Thank you! ✨

πŸ‘‰ Follow me

GitHub

LinkedIn

Top comments (0)