Giter VIP home page Giter VIP logo

hot-mock-middleware's Introduction

hot-mock-middleware

A express middleware that creates mock server. Your can specify a directory, the files under the directory are mock files that export interface definitions,support for real-time refresh based on 'require' dynamic analysis.

Installation

$ npm install --save-dev hot-mock-middleware

Quick start

  1. Create a directory mock-server, then create the file app.js, the content is:
const express = require('express');
const path = require('path');
const mockMiddleware = require('hot-mock-middleware');

const app = express();
// Use middleware to create mock server
app.use(
    mockMiddleware(path.resolve(__dirname, 'mock'))
);

app.listen(3000, () => console.log('Example app listening on port 3000!'));
  1. Create a mock directory under mock-server and create users.js as follows:
// mock/users.js

module.exports = {
  // supported values are Object and Array
  'GET /api/users': { users: [1, 2] },

  // GET can be omitted
  '/api/users/1': { id: 1 },

  // support for custom functions, APIs refer to express@4
  'POST /api/users/create': (req, res) => { res.end('OK'); },
};
  1. Install dependent modules and start app:
$ npm i -S express hot-mock-middleware
$ node app.js

The you can then access the http://localhost:3000/api/users to view API documents.
You can create more js files in the mock directory, the mock server will automatically grab contents, also you can modify these files, ths api data will refresh real-time without restarting app.

Using with Webpack

To use with webpack projects, simply add a setup options to your webpack-dev-server options.
Change your config file webpack.config.js:

const path = require('path');
const mockMiddleware = require('hot-mock-middleware');

module.exports = {
    // ...

    devServer: {
        before(app) {
            app.use(
                mockMiddleware(path.resolve(__dirname, 'mock'))
            );
        }
    }

    // ...
}

Let's add a script to easily run the dev server as well: package.json:

{
    "scripts": {
        "start": "webpack-dev-server --open",
        "build": "webpack"
    }
}

Then you can add some mock files in mock/ directory.

Using with create-react-app

To use with projects that created with create-react-app, create src/setupProxy.js as follows:

// src/setupProxy.js
const path = require('path');
const mockMiddleware = require('hot-mock-middleware');

module.exports = app => {
    app.use(mockMiddleware(
        path.resolve(__dirname, '../mock')
    ));
}

Then you can add some mock files in mock/ directory.

Demo

hot-mock-middleware's People

Contributors

vinneli avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.