Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
flat-white-mock
Advanced tools
It's a nice and easy way to lie to your app and satisfy any integration need with beauty fake data!
It's a nice and easy way to lie to your app and satisfy any integration need with beauty fake data!
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"
}
}
}
}
]
}....
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.
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"
...
},
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.
FAQs
It's a nice and easy way to lie to your app and satisfy any integration need with beauty fake data!
The npm package flat-white-mock receives a total of 3 weekly downloads. As such, flat-white-mock popularity was classified as not popular.
We found that flat-white-mock 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.