Skip to content

kishmiryan-karlen/simple-rest-mock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Mock Server for RESTful APIs

A simple mock server for RESTful APIs. Easily add new resources with CRUD support and simple data handling.

Usage

[PORT=] npx simple-rest-mock [--resources=] [--data=]

This will run a local server on the specified port with CRUD endpoints for given resources.

It will also create a local data.json file, which acts as a DB storage.

Options

Name Description Default
‑‑resources string[] comma-separated list of strings users,posts
‑‑data string path to the data file ./data‑{timestamp}.json
‑‑port number port for the server 3003

Examples

With no options


npx simple-rest-mock

The mock server will be running on port 3003, using data-<timestamp>.json to hold the data and serving the users and posts resources.

With all options


npx simple-rest-mock --resources=movies,genres --data=data.json --port=8080

The mock server will be running on port 8080, using data.json to hold the data and serving the movies and genres resources.

Resources

For each REST resource a set of CRUD endpoints are being created. For example, if you have specified movies as a resource at the time of starting the server, then the following endpoints will be served out-of-the-box:


Method Endpoint Request Response Description
POST /movies any JSON object Same JSON object with new id property Creates a new movie with the provided data
GET /movies N/A An array of movie objects Fetches all movie records
GET /movies/:id N/A The movie with the specified id Fetches the movie record with the given id
PUT /movies/:id any JSON object Same JSON object with specified id Replaces the movie record with the given id by the new object
DELETE /movies/:id N/A The id of the removed record Removes the movie record by the given id

Data

All data is being stored in the data file, which you specify when starting the server. It's a simple JSON content, and you can manually change it to serve the data you want.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published