Powered from "json form playground" demo project.
This one-page application will help the user to create Spooq sources file
The project must be served over HTTP. There are many ways you can achieve that. Here are two:
- Using Python's
SimpleHTTPServer
python -m SimpleHTTPServerThen open this page in your favorite browser:
http://localhost:8000/playground/
- Using
http-servernode module
npm install -g http-server
http-serverThen open this in page in your favorite browser:
http://localhost:8080/playground/
NB: The final / in the URL is needed.
