1.0.4 • Published 6 years ago

simple-mock-sys v1.0.4

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

simple-mock-sys

简单mock系统,适合作为webpack插件使用

使用方式

npm install simple-mock-sys -D

示例

const path = require('path');

const SimpleMockSys = require('simple-mock-sys');
const mockConfig = require('./mock/config.js');

module.exports = {
  // ...
  plugins: [
    new SimpleMockSys(3000)
  ],

  devServer: {
    // proxy to the mock server
    proxy: {
        '/api/test': 'http://localhost:3000'
    }
  }
};
1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago