Socket
Socket
Sign inDemoInstall

mini-mock-api

Package Overview
Dependencies
69
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    mini-mock-api

Lightweight node.js API mock server, route calls to static JSON files


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
3.98 MB
Created
Weekly downloads
 

Readme

Source

mini-mock-api

Lightweight node.js API mock server, route calls to static JSON files

What does it do?

Mini-Mock-API was written to mock a simple API in a few minutes. API calls are routed to static JSON files. As an example if your mock directory looks like this:

+ mock-files
  - cars.json
  - trains.json
  + oldschool
    - carriages.json

with cars.json

[
  {id: 1, name: 'Porsche 911'},
  {id: 2, name: 'Tesla S'}
]

GET localhost:8080/api/v1/cars

returns all cars inside cars.json

GET localhost:8080/api/v1/cars/1

returns one car with the id == 1

GET localhost:8080/api/v1/oldschool/carriages

returns all items from oldschool/carriages.json

Installation

npm install mini-mock-api

Usage

var API = require('mini-mock-api');
var myApi = new API({
  basePath: '/api/v1',
  mockPath: 'mock-files',
  idAttribute: '_id'
});
myApi.start();

To run the server go to the script directory (path options are relative to your execution path):

cd examples
node example.js

Open your browser and go to localhost:8080/api/v1/todos

Options

var options = {
  mockPath: 'mocks', //directory to mock files relative to path of script
  basePath: '/api/v1',  //base path for api calls -> localhost:8080/api/v1/...
  port: 8080,
  idAttribute: 'uuid', //the id property to search for when requesting api/v1/cars/123
  cors: false, //CORS headers for cross origin requests
  sortParameter: 'sortOrder' //the GET parameter for sort orders e.g. api/v1/cars?sortOrder=+name
  delay: false //true adds a 500ms delay to all request using connect-slow (http://npmjs.com/package/connect-slow), you can also set a options object to use connect-slow's advanced features
}
var myApi = new API(options);

Custom Routes

If static JSON files are not sufficient you can also add custom routes by defining your own request handler functions. Custom routes are supported for GET, POST, PUT and DELETE methods:

myApi.get('custom/status', function(request, response){
  response.json({status: 'okay'});
});

-> localhost:8080/api/v1/custom/status

Please note that custom routes are relativ to your 'basePath' property. If you need a route outside of your API scope use the '[get|post|put|delete]FromRoot' method:

myApi.getFromRoot('/ping', function(request, response){
  response.json({hello: 'there'});
});

-> localhost:8080/ping

Decorate

All API responses can be decorated by defining a decorate function. The functions also gets passed the request object as the second parameter. In this example all returned collections are wrapped into results and a total count is added.

myApi.decorate = function(data, request){
  if(data.length){
    return {
      results: data,
      total: data.length
    };
  }
  return data;
};

Develop

  • Install dependencies with npm install
  • Run tests with jasmine

Can i use this in production?

Hell no!

Keywords

FAQs

Last updated on 02 Sep 2015

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc