npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mini-mock-api

v0.3.0

Published

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

Downloads

3

Readme

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!