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

fetch-wordpress-api

v1.0.65

Published

Easy fetching from the Wordpress API

Downloads

121

Readme

Fetch WordPress API

npm version WordPress TypeScript JavaScript Reliability Rating Security Rating Maintainability Rating

This module provides a set of utility functions for interacting with a headless WordPress CMS via the WordPress REST API. It includes functions for fetching posts, pages, and categories, with support for custom fields and query parameters.

Installation

To install the package, run the following command:

npm install fetch-wordpress-api

Usage

Before using the package's functions, you need to configure the BASE_URL variable by calling the configure function and passing an object with the BASE_URL property set to the base URL of your WordPress site.

Here's an example of how to configure the BASE_URL and use the package's functions:

import { configure, fetchPosts, PostFields } from 'fetch-wordpress-api';

configure({ BASE_URL: 'https://example.com' });

// This will return an array of posts objects
const posts = await fetchPosts();

// Fetch only 5 posts
const posts = await fetchPosts(5);

// Fetch 3 posts containing only the title, content, and categories
const postFields: PostFields[] = ['title', 'content', 'categories']; // Remember to import the type PostFields to get suggestions about the post fields available and to avoid passing anything other than a possible field.

const posts = await fetchPosts(3, postFields);

Each function in this module performs a fetch request to a specific WordPress API endpoint. They return a Promise that resolves with the fetched data as a JSON object or rejects with an Error if the fetch request fails.

Please refer to the source code and TypeScript type definitions for detailed information on the available functions and their parameters.

API

The package includes the following utility functions:

  • configure(options):

This function sets up the package by using the provided options. It's crucial to use this function first in order to establish a connection with your Wordpress domain.

configure({BASE_URL: 'your-wordpress-domain'}).

  • fetchData(endpoint?, query?):

Main function that all other utility functions use to retrieve data.

  • fetchPosts(quantity?, postFields?):

Retrieve either all posts or a specified number of posts. You can specify the fields you want returned for each post.

fetchPosts(5, ['id', 'title']).

Note: fetchPosts() with no arguments will retrieve all posts with all fields. If you still want to retrieve all posts, but just with certain fields (as opposed to all of them), you can pass -1 in quantity: fetchPosts(-1, ['id', 'title'])

  • fetchPostsInCategory(categoryId, postFields?, quantity?):

Retrieve posts from a specific category. You can specify the fields you want returned for each post and limit the number of posts.

fetchPostsInCategory(1, ['id', 'title'], 5).

  • fetchPostBySlug(slug, postFields?):

Retrieve a post using its slug. You can specify the fields you want returned.

fetchPostBySlug('your/post-slug', ['id', 'title']).

  • fetchPostById('id', postFields?):

Retrieve a post by its ID. You can specify the fields you want returned.

fetchPostById(123, ['id', 'title']).

  • fetchAllCategories(categoryFields?):

Retrieve all categories. You can specify the fields you want for each category.

fetchAllCategories(['id', 'name']).

  • fetchPages(quantity?, pageFields?):

Retrieve a specified number of pages. You can specify the fields you want returned for each page.

fetchPages(5, ['id', 'title']).

Note: fetchPages() with no arguments will retrieve all pages with all fields. If you still want to retrieve all pages, but just with certain fields (as opposed to all of them), you can pass -1 in quantity: fetchPages(-1, ['id', 'title'])

  • fetchPageBySlug(slug, pageFields?):

Retrieve a page using its slug. You can specify the fields you want returned.

fetchPageBySlug('page-slug', ['id', 'title']).

  • fetchPageById(id, pageFields?):

Retrieve a page by its ID. You can specify the fields you want returned.

fetchPageById(123, ['id', 'title']).

For more detailed information on the available functions and their parameters, please refer to the source code and TypeScript type definitions.

Importing Types

In addition to importing the functions, you can also import the Typescript types from this package. This can be useful when working with the functions and their return values in a Typescript project.

To import the types, simply include them in your import statement:

import type { CategoryFields } from 'fetch-wordpress-api';

By importing the types, you can benefit from TypeScript's type checking and autocompletion features when using this package.

These are the types available to use in your application:

type Post = {
  author: number;
  categories: number[];
  comment_status: string;
  content: { rendered: string };
  date: string;
  date_gmt: string | null | Date;
  excerpt: { rendered: string };
  featured_media: number;
  format: string;
  guid: string;
  id: { rendered: string; raw: string };
  link: string | Url;
  meta: Record<string, string | number | boolean | any[] | Record<string, any>>;
  modified: string | Date;
  modified_gmt: string | Date;
  ping_status: string;
  slug: string;
  status: string;
  sticky: string;
  tags: number[];
  template: string;
  title: { rendered: string };
  type: string;
};

export type PostFields =
  | 'author'
  | 'categories'
  | 'comment_status'
  | 'content'
  | 'date'
  | 'date_gmt'
  | 'excerpt'
  | 'featured_media'
  | 'format'
  | 'guid'
  | 'id'
  | 'link'
  | 'meta'
  | 'modified'
  | 'modified_gmt'
  | 'ping_status'
  | 'slug'
  | 'status'
  | 'sticky'
  | 'tags'
  | 'template'
  | 'title'
  | 'type';

type Category = {
  count: number;
  description: string;
  id: number;
  link: string;
  meta: Record<string, string | number | boolean | any[] | Record<string, any>>;
  name: string;
  slug: string;
  taxonomy: string;
};

export type CategoryFields =
  | 'count'
  | 'description'
  | 'id'
  | 'link'
  | 'meta'
  | 'parent'
  | 'name'
  | 'slug'
  | 'taxonomy';

export type PageFields =
  | 'author'
  | 'comment_status'
  | 'content'
  | 'date'
  | 'date_gmt'
  | 'excerpt'
  | 'featured_media'
  | 'generated_slug'
  | 'guid'
  | 'id'
  | 'link'
  | 'menu_order'
  | 'meta'
  | 'modified'
  | 'modified_gmt'
  | 'password'
  | 'permalink_template'
  | 'ping_status'
  | 'slug'
  | 'status'
  | 'template'
  | 'title'
  | 'type';

type Page = {
  author: number;
  comment_status: 'open' | 'closed';
  content: {
    rendered: string;
    raw?: string;
    protected?: boolean;
  };
  date: string | null;
  date_gmt: string | null;
  excerpt: {
    rendered: string;
    raw?: string;
    protected?: boolean;
  };
  featured_media: number;
  generated_slug: string;
  guid: {
    rendered: string;
  };
  id: number;
  link: string;
  menu_order: number;
  meta: Record<string, any>;
  modified: string;
  modified_gmt: string;
  parent: number;
  password: string;
  permalink_template: string;
  ping_status: 'open' | 'closed';
  slug: string;
  status: 'publish' | 'future' | 'draft' | 'pending' | 'private';
  template: string;
  title: {
    rendered: string;
    raw?: string;
  };
  type: 'page';
};

Contributing

If you'd like to contribute to this project, please feel free to submit a pull request or open an issue on the GitHub repository.

License

This package is released under the MIT License.