Skip to content

Fake rest is a fake API generator using a config file to help you develop clients.

License

Notifications You must be signed in to change notification settings

graymind75/fake-rest

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Fake-Rest is a fake API generator using a config file to help you develop clients.

It's EASY AS HELL.

Usage

It's very simple to use. just create a whatever.toml file and put these lines in it:

[config]
port = 7000

[[data]]
method = "GET"
path = "/hello"
result_type = "direct"
result = ""
status_code = 200

Then, start the program like: ./fake-rest -c /path/to/file check the example/server.toml file for more advance options.

That's it, have fun.

what's next?

FakeRest support headers, query-strings except body for now.

I will add form, multipart, etc body as soon as possible to check and condition on those fields too.

Features:

  • Serve String as response
  • Serve file as response
  • Serve file for download
  • Get host address from config file
  • Path values
  • Body Parsing:
    • Form
    • Multipart
  • Header value checking

About

Fake rest is a fake API generator using a config file to help you develop clients.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages