0.0.5 • Published 6 years ago
@gang-of-front/friday v0.0.5
F.R.I.D.A.Y
Mock Http Request

Install yarn add -D @gang-of-front/friday
How use
create a mock to api src/mock/auth.js
const auth = ({server}) => {
  server
    .get('https://my-api.app.com/auth')
    .interceptor((req, res)=>res.status(200).json({token: 'xpto'}))
}
export { auth }create src/friday.config.js
import { friday } from '@gang-of-front/friday'
import { auth } from './mock/auth'
const config = {
  name: 'My-Mock-Api',
  logging: false
}
const factory = friday(auth)
factory(config)add in index.js
if (process.env.NODE_ENV === 'development') {
  import('./friday.config')
}