Dogoku
Dogoku

Reputation: 4675

Are there any online REST API sandbox/playground

I am looking for a quick way to spin up a very simple REST api, for testing purposes.

Specifically I want to be able to handle CORS preflight requests (i.e need ability to handle the OPTIONS verb)

E.g: A service that spins up a temporary node instance with express and allows me to add request handlers and gives me a temporary url. Or the equivalent in another language (java, ruby, etc)

Upvotes: 1

Views: 588

Answers (1)

gabeio
gabeio

Reputation: 1310

Maybe try https://code.runnable.com it allows you to quickly build and run whole express apps and it allows multiple different languages not just node.js.

Edit: this website has been sunset, https://replit.com is a decent place now to sandbox/playground with different languages.

Upvotes: 0

Related Questions