mock-stores
v0.0.6
Published
yet another easy and delightful data mock solutions
Readme
Introuced
Mock-Stores help you to mock data easily at anywhere with webpack.providePlugin
Install
$ yarn add mock-stores -DUsage
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
