hawx1993 / mock-stores

🍡yet another easy and delightful data mock solutions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introuced

GitHub issuesGitHub forksGitHub starsGitHub license

Mock-Stores help you to mock data easily at anywhere with webpack.providePlugin

Install

$ yarn add mock-stores -D

Usage

firstly,create mock directory in your root directory, and then create your js/json file. Add this plugin in webpack.config.js file

// webpack.config.js
  plugins: [
    new webpack.ProvidePlugin({
      Store: 'mock-stores'
  })

just add Store object in where you get data, and in development environment you will get mock data,and in production environment ,you get online data.You don't have to do anything, enjoy it!

 fetch('/users.json')
   .then(function(response) {
     let item = Store['yourMockJsFileName'] || response.json()
   })  

LICENSE

MIT ©hawx1993

About

🍡yet another easy and delightful data mock solutions

License:MIT License


Languages

Language:JavaScript 100.0%