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

mockifyjs

v1.0.0

Published

A Server Mocker for creating temperary rest api servers.

Downloads

4

Readme

MockifyJS

MockifyJS is an npm package that allows you to quickly create a mock server by using a very easy to learn and understand syntax.

Install

MockifyJS can be installed with npm using the command below.

npm i -g mockifyjs

Usage

After Installing MockifyJS,
Create a mocker file server.mkr,
and run your mocker file with the command

mockify server.mkr

Which will run the mocker file on the default Port 3000
You can change this by passing the port too.

mockify server.mkr 5000

Modifying a mocker file after runing the mocker server will make the changes take place instantly,
Which means you dont have to restart the mocker server everytime you modify the mocker file.

Syntax

The Mocker Syntax is very easy to understand and learn.
This is a basic mocker file syntax.

alt="MockifyJS"

A Mocker File has a Request Method which could be any of this.

  • GET - a GET request
  • POST - a POST request
  • PUT - a PUT request
  • DELETE - a DELETE request
  • HEAD - a HEAD request
  • OPTIONS - a OPTIONS request
  • TRACE - a TRACE request
  • CONNECT - a CONNECT request
  • ALL - any type of request

Request Path

The Request Path is the Request Path of a request.
Eg api/v2/user,password/forgot,etc

When any request to the mocker server matches the Request Method and Request Path,
The Response Headers and Response Text is returned.
If the request does not match any request in the mocker file, a 404 error occurs.

Tags

Mocker Tags are special words in MockifyJS which starts with a $,
We use these Tags in The Response Text to return a special type of response.

alt="MockifyJS"

echo

The echo Tag simply returns the Request Data as the Response Text,
Which means it gives you back what you give it.

POST /api 200
    Content-Type: application/json
$echo

randNumber

The randomNumber Tag takes a number and returns a random number between 0 and the number passed to it.

POST /random 200
    Content-Type: application/json
$randNumber 100

get

The get Tag takes a url and makes a get request to this url and retun the response as Response Text

POST /get/example 200
$get https://example.com

readFile

The readFile Tag reads a file from the file system and return it as the Response Text
This can be used to return a media or any other type of file.
This is an example of an image file.

GET /images/cat.jpg 200
    Content-Type: image/jpeg
$readFile ../../Downloads/cat.jpg

MockifyJS was made with ❤️ in 🇳🇬 by Dev Bash