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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@khadijamakkaoui/api-mock-ai

v1.0.1

Published

lightweight mock API generator powered by AI.

Readme

🎉 api-mock-ai

A lightweight Node.js package that generates mock AI responses using predefined logic --- perfect for testing, prototyping, and building apps without needing a real AI API.


📦 Badges


📚 Table of Contents

  • ✨ Features

  • 📦 Installation

  • ⚙️ Environment Variables

  • 🚀 Usage

    • Basic Example

    • Mock API Server Mode

  • 📁 Project Structure

  • 🧪 Running Tests

  • 💡 How It Works

  • 📌 Roadmap

  • 🤝 Contributing

  • 📄 License


Features

  • ⚡ Generate mock AI responses instantly

  • 🌐 Optional Express server to mock /ai/generate API endpoints

  • 🔧 Zero external dependencies (except Express if server mode is used)

  • 🔑 Optional OpenAI key support (fallback to mock mode when missing)

  • 🧪 Perfect for frontend integration tests and prototypes


📦 Installation

npm install api-mock-ai

or

yarn add api-mock-ai


⚙️ Environment Variables

To enable real OpenAI integration, set:

OPENAI_API_KEY=your_key_here

If no key is provided, the library automatically switches to mock mode.


🚀 Usage

Basic Example

import { generateAIResponse } from "api-mock-ai"; const run = async () => { const response = await generateAIResponse("Hello world!"); console.log(response); }; run();

Output example:

🤖 Mock AI Response: You said "Hello world!" --- here is your mock reply.


🖥️ Mock API Server Mode

You can also run a local Express server that exposes:

POST /ai/generate

Example:

`import { startMockAIServer } from "api-mock-ai";

startMockAIServer(3000);`

You will see:

🚀 Mock AI Server running on http://localhost:3000

Test the API:

curl -X POST http://localhost:3000/ai/generate\ -H "Content-Type: application/json"\ -d '{"prompt":"Hello!"}'


📁 Project Structure

api-mock-ai/ ├── src/ │ ├── ai-generator.js # generateAIResponse logic (mock + real mode) │ ├── router-builder.js # Express routes │ ├── server.js # startMockAIServer function ├── package.json ├── README.md └── test.js # example usage


💡 How It Works

1️⃣ If OPENAI_API_KEY exists

→ The function uses the official OpenAI client to generate text.

2️⃣ If no key is found

→ It falls back to a safe, predictable mock response.

Example fallback:

🤖 Mock AI Response: <your prompt> --- (This is a mock response.)

Perfect for:

  • UI testing

  • Integrations

  • Frontend apps without backend

  • Offline development


🧪 Running Tests

node test.js


📌 Roadmap

  • Add streaming responses

  • Add multiple mock modes (funny / serious / JSON / errors)

  • Add customizable templates

  • Add rate limiting to the mock server

  • Add TypeScript typings


🤝 Contributing

Contributions are welcome!
To contribute:

git clone https://github.com/KhadijaMakkaoui/api-mock-ai

cd api-mock-ai

npm install

Then submit a pull request 🚀