
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
MockifyJS is an npm package that allows you to quickly create a mock server by using a very easy to learn and understand syntax.
MockifyJS can be installed with npm using the command below.
npm i -g mockifyjs
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.
The Mocker Syntax is very easy to understand and learn.
This is a basic mocker file syntax.
A Mocker File has a Request Method
which could be any of this.
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.
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.
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
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
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
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
FAQs
A Server Mocker for creating temperary rest api servers.
We found that mockifyjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.