mockman-js · Report Bug · Request Feature
🚀 MockmanJS gives plug and play React Component to test your fake mock-backend APIs.
⚡ Mocking Libraries such as MirageJS, JSON-Server etc. provide fake RESTful APIs. But sadly, you cannot test them without actually using them in your project.
🌌 Mockman is POSTMAN; but for Mock APIs.
🤩 Import Mockman in your project and get started!
You build Mock APIs, Mockman will handle the REST!
Install Mockman by running:
npm i mockman-js
yarn add mockman-js
/*
we encourage to have a dedicated route called `/mock-api` on your frontend app where you can import Mockman and test them
*/
import React from "react";
import Mockman from "mockman-js";
function MockAPI() {
return (
<div className="MockAPI">
<Mockman />
</div>
);
}
export default MockAPI;
In your index.html
, add the following:
<link
rel="stylesheet"
href="https://unpkg.com/mockman-js@latest/dist/style.css"
/>
You can always override the default styles by defining your custom css.
Mockman currently supports colorScheme
prop to define color scheme to Mockman component.
The colorScheme
prop currently accepts two values - "standard" (default) and "dark".
<Mockman colorScheme="dark" />
-
mockman is truly Open Source. Any sort of contribution to this project are highly appreciated. Create a branch, add commits, and open a pull request.
-
Please read
CONTRIBUTING
for details on ourCODE OF CONDUCT
, and the process for submitting pull requests to mockman.
This project is licensed under the MIT License - see the LICENSE
file for details.