
Security News
npm Introduces minimumReleaseAge and Bulk OIDC Configuration
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.
Snapshot-based stub/mocking of APIs
Small command line tool that allows you to take "snapshots" of any given API endpoint and store the response. Using the start command will spawn a server that will serve all previously stored endpoints.
Heavily inspired by Jest Snapshot testing
npm install -g snapstub
Make sure you're in the desired folder to host your api mock files.
:arrow_down: Creates a new api stub:
snapstub add http://example.com/api/foo/bar
...create as many snapshots as you want.
:rocket: Starts your mock server:
snapstub start
:sparkles: Your endpoint will be locally available at: http://localhost:8059/api/foo/bar
This is a very useful workflow that allows you to combine Chrome's Copy as cURL web dev tools option with the ability to store a snapstub route.
curl http://example.com/api/foo | snapstub save /api/foo
or you can just save any arbitrary data:
cat foo.json | snapstub save /api/foo # similar to $ cp foo.json __mocks__/api/foo
or even:
echo '{"data":true}' | snapstub save /api/foo
If you want to save one or many different http methods, use the --method option:
snapstub add http://example.com/api/foo/bar --method=get,post,put
If you need to pass a custom header along with your request, let's say one is needed for a auth token or any other reason, use the --header option:
snapstub add http://example.com/api/user/42 --header "X-Token: 1234"
You can set as many custom headers as you need:
snapstub add http://example.com/api/login --header "X-User: foo" --header "X-Token: bar"
Usually a POST/PUT method will also require data to be sent along with the request, you can do so by using the --data option:
snapstub add http://example.com/api/user/new --data "name=Foo"
Content-Type headers will be set automatically but if you specify one (using --header option) that will take precedence.
It also accepts json data (Content-Type will be set to application/json automatically):
snapstub add http://example.com/api/user/new --data '{ "name": "Lorem" }'
If no method is defined it defaults to POST, if you want to use PUT instead just use the --method option:
snapstub add http://example.com/api/user/update --data "name=Bar" --method=put
You can also point the --data option to a file in order to use the contents of that file as a payload. This is a good way to maintain repeatable calls to POST/PUT routes. Given that there is a payload.json file in the current working directory:
snapstub add http://example.com/api/user/add --data ./payload.json
Headers will be automatically added and the content will be exactly as read from the file.
Using custom port and/or folder name:
export SNAPSTUB_FOLDER_NAME=my-mock-folder/
export SNAPSTUB_PORT=9000
snapstub start
By default snapshots will be saved in a __mocks__ folder that resolves from the current working directory, so make sure you run the commands from the correct project folder you desire.
NOTE: v1.x only supports json endpoints.
A JavaScript programmatic api is available if you're using node.js:
const snapstub = require('snapstub');
// starts the mock server
snapstub.start({
verbose: true,
mockFolderName: '__mocks__',
port: 8080
});
The following methods are available:
snapstub.add({
url: 'http://example.com/api/v1/data',
addOptions: {
headers: {
'content-type': 'application/json',
'Cookie': 'FOO=bar;'
},
body: 'lorem=ipsum',
method: 'post'
},
mockFolderName: '__mocks__'
});
snapstub.save({
url: '/api/v1/data',
saveOptions: {
method: 'post'
},
mockFolderName: '__mocks__'
});
snapstub.start({
verbose: true,
mockFolderName: '__mocks__',
port: 8080
});
snapstub.stop();
snapstub wouldn't be possible without stubborn-server - it's a very flexible mock server based on static files, if you have the need to handle more complex scenarios (handling route params, dynamic responses, etc) go take a look at it.
Please do! This is an open source project. If you would like a feature, open a pull request. If you have a bug or want to discuss something, open an issue.
MIT © 2017 Ruy Adorno
FAQs
Snapshot-based stub/mocking of APIs
The npm package snapstub receives a total of 5 weekly downloads. As such, snapstub popularity was classified as not popular.
We found that snapstub 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
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.

Research
/Security News
Socket uncovered four malicious NuGet packages targeting ASP.NET apps, using a typosquatted dropper and localhost proxy to steal Identity data and backdoor apps.