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

mocf

v1.1.3

Published

A command-line http mock API server

Downloads

48

Readme

npm npm downloads

Mock API Server using Text Files

A straight forward command line mock api server.

Mocks API endpoints from plain text data files.

Installation

$ npm install -g mocf

Usage

$ mocf -h
Usage: mocf [options] <data_files>

Options:
  -V, --version             output the version number
  -a, --address <host>      ip address to bind (default: "0.0.0.0")
  -p, --port <port>         port to bind (default: 4040)
  --proxy <proxy_target>    proxy requests to another server if there is no endpoint configured here
  --proxypath <proxy_path>  only proxy requests starts with this path prefix, repeatable
  -h, --help                display help for command

Quick Start

create a text file, let's call it data.txt with the following content

/api/hello
{"message": "How are you"}

start mocf from command line:

$ mocf data.txt

start calling your API:

$ curl http://localhost:4040/api/hello

Data File

mocf looks for endpoint informations in the text files. We need to have some special contents in the file. Let's find out what can, and should, be included in these text files.

Blank Lines

Blank lines are ignored, even if you want them in the response body.

Sorry about that, but mocf aims to be a good API mock server, so blank-lines-in-responses is not an important feature.

Comments

If a line starts with a hash sign, #, it's treated as a comment, and will be ignored.

# this is a comment
## no matter how many #'s are there, a comment is a comment ##

URL

To start an endpoint in a text file, put a URL on a line by itself, for example

https://somedomain.com/api/v1/items

protocol and host are ignored, mocf will be able to handle the path /api/v1/items.

Since mocf only cares about URL path, and query string, this line can be just the path, /api/v1/items. However, being able to ignore protocol and domain is important, as it allows us to copy just any URL from browser address bar or network development tool.

So far, it responds to GET requests to this endpoint with a 200 status and an empty body:

$ curl -v http://localhost:4040/api/v1/items
*   Trying 127.0.0.1:4040...
* Connected to localhost (127.0.0.1) port 4040 (#0)
> GET /api/v1/items HTTP/1.1
> Host: localhost:4040
> User-Agent: curl/7.70.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Content-Type: text/plain
< Content-Length: 0
< Date: Thu, 09 Jul 2020 13:07:12 GMT
< Connection: keep-alive
<
* Connection #0 to host localhost left intact

Method

We can choose to specify an optional HTTP method, like POST, PUT or any other valid method, by putting it on a line by itself:

https://somedomain.com/api/v1/items
POST

Now we have to use POST method to access our endpoint:


$ curl -v http://localhost:4040/api/v1/items             # GET is 404
*   Trying 127.0.0.1:4040...
* Connected to localhost (127.0.0.1) port 4040 (#0)
> GET /api/v1/items HTTP/1.1
> Host: localhost:4040
> User-Agent: curl/7.70.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 404 Not Found
< Content-Security-Policy: default-src 'none'
< X-Content-Type-Options: nosniff
< Content-Type: text/html; charset=utf-8
< Content-Length: 151
< Date: Thu, 09 Jul 2020 13:12:06 GMT
< Connection: keep-alive
<
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot GET /api/v1/items</pre>
</body>
</html>
* Connection #0 to host localhost left intact

$ curl -v http://localhost:4040/api/v1/items -X POST
*   Trying 127.0.0.1:4040...
* Connected to localhost (127.0.0.1) port 4040 (#0)
> POST /api/v1/items HTTP/1.1
> Host: localhost:4040
> User-Agent: curl/7.70.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 200 OK
< Content-Type: text/plain
< Content-Length: 0
< Date: Thu, 09 Jul 2020 13:12:21 GMT
< Connection: keep-alive
<
* Connection #0 to host localhost left intact

Status Code

Do the same if we want to use some thing other than 200 for status code:

https://somedomain.com/api/v1/items
POST
401

Response

After that, we can write as many lines as we want for response body:

https://somedomain.com/api/v1/items
POST
401
{
    "error": true,
    "message": "User not signed in."
}

If the response text is a valid JSON, Content-Type will be application/json, otherwise it's plain/text:

$ curl -v http://localhost:4040/api/v1/items -X POST
*   Trying 127.0.0.1:4040...
* Connected to localhost (127.0.0.1) port 4040 (#0)
> POST /api/v1/items HTTP/1.1
> Host: localhost:4040
> User-Agent: curl/7.70.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 401 Unauthorized
< Content-Type: application/json
< Content-Length: 46
< Date: Thu, 09 Jul 2020 13:26:11 GMT
< Connection: keep-alive
<
* Connection #0 to host localhost left intact
{"error":true,"message":"User not signed in."}%

If the response body is too big to fit in the data file, we can put it in a separate file, refer to it in the data file.

To refer to another file, start a line with file:, followed by path to that file, relative to the data file defining this endpoint:

## example/separate-file-for-response.txt

/api/v1/very_large
file:../package-lock.json

Command Line Options

-V or --version output the version number

-a or --address <host> ip address to bind (default: "0.0.0.0")

-p or --port <port> port to bind (default: 4040)

--proxy <proxy_target> proxy requests to another server if there is no endpoint configured here

--proxypath <proxy_path> only proxy requests starts with this path prefix, repeatable

-h or --help display help for command

<data_file> [data_file, ...] one or more data files.

order is important, if the same endpoint has been defined in more than one data files, definition from the last file will be used