
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
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.
The npm package mockifyjs receives a total of 2 weekly downloads. As such, mockifyjs popularity was classified as not popular.
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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.