Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 541 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 541 Bytes

Endpoint Imposter

Just create a file containing your mocks,

// mocks.js
module.exports = [
  {
    request: { path: '/todos' },
    response: { json: ['a', 'b', 'c'] },
  }
]

tell Endpoint Imposter where to find this file,

$ npx endpoint-imposter --port 3000 --mocks mocks.js

and enjoy your mocked server!

$ curl http://localhost:3000/sessionId/todos     
["a","b","c"]%

For a detailed description and more examples, please check out 📖 the documentation.