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

@appwrite.io/docs

v0.1.0

Published

Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API

Readme

Appwrite Markdown SDK

License Version Twitter Account Discord

This SDK is compatible with Appwrite server version 1.8.x. For older versions, please check previous releases.

Appwrite is an open-source backend as a service server that abstracts and simplifies complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Markdown SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to https://appwrite.io/docs

This SDK provides programmatic access to Appwrite documentation, designed for AI consumption with lazy-loading and search capabilities.

Installation

npm install @appwrite.io/docs

Usage

Get Table of Contents

Retrieve a lightweight table of contents without loading document content:

import { getTableOfContents } from '@appwrite.io/docs';

const toc = getTableOfContents('typescript');
// → { language: 'typescript', services: [{ name: 'account', methods: [...] }] }

Get Specific Documentation

Load a specific markdown document by path:

import { getMarkdown } from '@appwrite.io/docs';

const doc = await getMarkdown('typescript', 'account/create-session');
// → '# createSession\n\nDescription: ...'

Search Documentation

Search across all documents by keywords:

import { searchDocs } from '@appwrite.io/docs';

const results = await searchDocs('typescript', 'MFA authentication', { limit: 5 });
// → [{ path: 'account/create-mfa-...', title: '...', snippet: '...' }]

Using the SDK Class

For more control, instantiate the SDK class directly:

import { DocsSDK } from '@appwrite.io/docs';

const sdk = new DocsSDK();

// Get all available languages
const languages = sdk.getLanguages();

// Load all docs for a service
const accountDocs = await sdk.getServiceDocs('typescript', 'account');

// Clear cache to free memory
sdk.clearCache();

API Reference

Functions

| Function | Description | |----------|-------------| | getLanguages() | Get list of available SDK languages | | getTableOfContents(language) | Get TOC for a language (lightweight, no content) | | getMarkdown(language, path) | Get specific markdown document | | searchDocs(language, query, options?) | Search documentation by keywords |

DocsSDK Class

| Method | Description | |--------|-------------| | getLanguages() | Get list of available SDK languages | | getTableOfContents(language) | Get TOC for a language | | getMarkdown(language, path) | Get specific markdown document (cached) | | getServiceDocs(language, service) | Get all docs for a service | | searchDocs(language, query, options?) | Search documentation | | clearCache() | Clear the content cache | | getCacheStats() | Get cache statistics |

Search Options

| Option | Type | Default | Description | |--------|------|---------|-------------| | limit | number | 10 | Maximum results to return | | minScore | number | 0.1 | Minimum relevance score (0-1) | | services | string[] | all | Filter to specific services |

Building from Source

# Install dependencies
npm install

# Generate manifest from markdown files
npm run build:manifest

# Compile TypeScript
npm run build

Contribution

This library is auto-generated by the custom SDK Generator. To learn more about how you can help us improve this SDK, please check the contribution guide before sending a pull-request.

License

Please see the BSD-3-Clause license file for more information.