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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tatil/client-api

v0.0.5

Published

Tatilsepeti Client Api for nextjs

Downloads

79

Readme

@tatil/client-api

Tatilsepeti client-side API package. Next.js client components ve browser tarafında çalışacak API çağrıları için tasarlanmıştır.

Kurulum

yarn add @tatil/client-api

Kullanım

GET İsteği

import Api from '@tatil/client-api';

const { status, data } = await Api.get('/api/tours', {
  page: 1,
  pageSize: 20,
});

if (status === 'success') {
  console.log(data);
}

POST İsteği

import Api from '@tatil/client-api';

const response = await Api.post('/api/reservation', {
  hotelId: 123,
  checkinDate: '2026-01-17',
  checkoutDate: '2026-01-21',
});

console.log(response.data);

Response Parse

import Api from '@tatil/client-api';

const response = await Api.get('/api/tours');
const data = Api.parseResponse(response);

console.log(data);

Özellikler

  • /api baseURL otomatik eklenir
  • Next.js API route'ları ile uyumlu
  • Type-safe response yapısı
  • Axios tabanlı

API Metotları

| Metot | Parametreler | Dönüş Değeri | Açıklama | |-------|--------------|--------------|----------| | get(path, params) | path: string, params: object | { status, data } | GET isteği | | post(path, data) | path: string, data: object | Axios response | POST isteği | | parseResponse(response) | response: object | any | Response data'sını çeker | | resolveResponse(response) | response: object | { status, data } | Response'u standart formata çevirir |

Örnek Kullanım (Next.js)

Client Component

'use client';

import { useState, useEffect } from 'react';
import Api from '@tatil/client-api';

export default function TourList() {
  const [tours, setTours] = useState([]);

  useEffect(() => {
    const fetchTours = async () => {
      const { status, data } = await Api.get('/tours', { page: 1 });

      if (status === 'success') {
        setTours(data);
      }
    };

    fetchTours();
  }, []);

  return (
    <div>
      {tours.map(tour => (
        <div key={tour.id}>{tour.name}</div>
      ))}
    </div>
  );
}

Hook ile Kullanım

'use client';

import { useQuery } from '@tanstack/react-query';
import Api from '@tatil/client-api';

export function useTours(page = 1) {
  return useQuery({
    queryKey: ['tours', page],
    queryFn: () => Api.get('/tours', { page }),
  });
}

Response Yapısı

GET Response

{
  status: 'success', // veya 'error'
  data: {
    // API'den dönen actual data
  }
}

POST Response

// Axios response objesi döner
{
  data: { ... },
  status: 200,
  statusText: 'OK',
  headers: { ... },
  config: { ... }
}

Server vs Client API

| Özellik | @tatil/client-api | @tatil/server-api | |---------|-------------------|-------------------| | Kullanım Alanı | Client Components | Server Components, API Routes, Middleware | | Token Yönetimi | Yok | Otomatik refresh | | Base URL | /api | Environment'den (API_URL) | | Logging | Yok | Reklog ile |

Notlar

  • Bu paket sadece client-side (browser) çalışır
  • Server-side işlemler için @tatil/server-api kullanın
  • Next.js API route'larına istek atar

Lisans

MIT