Skip to content

neogcamp/mockman

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MockmanJS

npm version mockman licence mockman forks mockman stars mockman issues mockman pull-requests

mockman-js · Report Bug · Request Feature


mockman

🤔 About

🚀 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!


⬇ Installation

Install Mockman by running:

npm i mockman-js

yarn add mockman-js

🛠️ Usage

Import the component in your App

/*
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;

Import Styles

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.

Color Scheme

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" />

💖 We love Contributions

  • 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 our CODE OF CONDUCT, and the process for submitting pull requests to mockman.


🛡️ License

This project is licensed under the MIT License - see the LICENSE file for details.