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

@malevich-studio/strapi-sdk-typescript

v1.2.33

Published

A TypeScript SDK for interacting with Strapi APIs.

Readme

Strapi SDK for TypeScript

A TypeScript SDK for interacting with Strapi APIs.

⚠️ This SDK is designed specifically for Strapi 5. It will not work with previous versions of Strapi. ⚠️

🚀 Installation

To install the SDK, run:

npm install @malevich-studio/strapi-sdk-typescript

🛠 Configuration

Create a .env file with your Strapi base URL and API token:

STRAPI_URL=http://localhost:1337
STRAPI_TOKEN=<your_strapi_token>

Generating API Token

To interact with the Strapi API, you need to create an API token with at least Content-Type Builder permissions. Navigate to:

<your_strapi_base_url>/admin/settings/api-tokens/create

Generating API Class

Run the following command to generate TypeScript types based on your Strapi schema:

npx generate-strapi-types

📌 Usage

Basic Example

Create strapi.ts to initialize the API class:

import Strapi from "./strapi"; // strapi.ts file

const api = new Strapi(process.env.STRAPI_URL || '', process.env.STRAPI_TOKEN || '');

const articles = api.articles({
  fields: ["documentId", "title", "text"],
  populate: {
    seo: {
      fields: ["slug", "metaTitle", "metaDescription"],
      populate: {
        openGraph: {
          fields: ["title", "description", "url", "type"],
          populate: {
            image: {
              fields: ["url", "width", "height"]
            }
          }
        }
      }
    }
  }
});

Using in Next.js with Caching

If using Next.js, you can integrate caching for better performance:

import Strapi from "@/strapi"; // strapi.ts file

const api = new Strapi(process.env.STRAPI_URL || '', process.env.STRAPI_TOKEN || '');

const articles = api.articles(
  {
    fields: ["documentId", "title", "text"],
    populate: {
      seo: {
        fields: ["slug", "metaTitle", "metaDescription"],
        populate: {
          openGraph: {
            fields: ["title", "description", "url", "type"],
            populate: {
              image: {
                fields: ["url", "width", "height"]
              }
            }
          }
        }
      }
    }
  },
  // Cache Options
  {
    cache: "force-cache",
    next: {
      revalidate: 24 * 3600, // Revalidate every 24 hours
      tags: ["contact", "regions"]
    }
  }
);

Login Example

Next.js

'use server';

import Strapi from '@/strapi';
import { cookies } from 'next/headers';

export async function login(email: string, password: string) {
  const strapi = new Strapi(process.env.STRAPI_URL || '');
  const response = await strapi.login(email, password);

  if (!response.error) {
    (await cookies()).set('access_token', response.jwt, {
      httpOnly: true,
      secure: process.env.NODE_ENV === 'production',
      sameSite: 'lax',
      path: '/',
      maxAge: 3600 * 24 * 365 * 10,
    });
  }

  return response;
}

📌 TODO List

  • [ ] Add authentication features:
    • [x] Log In functionality
    • [x] User Registration
    • [ ] User privileges check
  • [x] Add localization features
  • [ ] Refactor src/generator/index.ts for better maintainability
  • [ ] Enable passing Strapi credentials via CLI parameters
  • [ ] Allow customization of API class path
  • [ ] Resolve naming conflicts between Components and Content Types
  • [ ] Support custom attributes in src/generator/attributes/index.ts:15:
    • [ ] Define attributes by project code
    • [ ] Auto-load attributes from other npm packages by scanning node_modules

📌 Contributions are welcome! If you encounter issues or have feature requests, feel free to open a pull request or an issue. 🚀

📦 View on NPM 🔗 GitHub Repository