Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

flat-white-mock

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flat-white-mock

It's a nice and easy way to lie to your app and satisfy any integration need with beauty fake data!

  • 0.3.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Flat White service mock

It's a nice and easy way to lie to your app and satisfy any integration need with beauty fake data!

How it works

It ups an http server creating get, post, put and delete based in json configurations.

For every http verb you want to mock (GET, for instance), you must have a file with it's name on it in plural.

For instance:

/your-mock-dir/gets.json

If you are looking for mock get, post, put and delete you will have:

/your-mock-dir/gets.json

/your-mock-dir/posts.json

/your-mock-dir/puts.json

/your-mock-dir/deletes.json


Inside each file, the sintax to be used is the same. You can start copying the simple snipped below:

```json
    "/my-path/here?param=ok": {
        "response":{
            "body":{
                "right":"yes"
            },
            "code":200,
            "headers":{
                "x-believe-me":"bro"
            }
        }
    }

If you are looking for something more advanced, you can use conditional responses as shown below:

    "/my-path/here": {
        "conditions":[
            {
                "body.id!==3":{
                    "response":{
                        "body":{
                            "that's bad":"man!"
                        },
                        "code":405
                    }
                }   
            },
            {
                "body.id===2":{
                    "response":{
                        "body":{
                            "super":"man!"
                        },
                        "code":200
                    }   
                }
            },
            {
                "body.id!==0 && body.id > 2 && body.id < 5":{
                    "response":{
                        "body":{
                            "super":"amazing!"
                        },
                        "code":200,
                        "headers":{
                            "x-awesome":"bro"
                        }
                    }
                }   
            }
        ]
    }....

How to split your json files

If you wish to split your json files, it is suported as a response attr the special string "file: filenamehere.json"

...
{
                "body.id!==0 && body.id > 2 && body.id < 5":{
                    "response":{
                        "body":"file: yourjsonfile.json",
                        "code":200,
                        "headers":{
                            "x-awesome":"bro"
                        }
                    }
                }   
            }

Inside your yourjsonfile.json you have to have a valid json and It will be responsed.

How to use it in your projects

The first step is to have the dev dependency installed

npm i flat-white-mock@latest

Than you have to inform your mock directory and if you wish a different port than 4321 you have to say that too.

FW_PORT=9999 FW_DIR=./mock-directory-here/ node node_modules/flat-white-mock 

Ideally, you will end up adding the command to your package.json. For instance:

"scripts": {
    "test":".....",
    "start:mock": "FW_PORT=9999 FW_DIR=./mock-directory-here/ node node_modules/flat-white-mock"
    ...
  },

How to dev on this project

You can start the mock api and use postman to test it or you can run npm test and use an unit test to do so.

Keywords

FAQs

Package last updated on 08 Nov 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc