DEV Community

Cover image for Test your Django Web App with Ngrok
Ordinary Coders
Ordinary Coders

Posted on • Originally published at ordinarycoders.com

Test your Django Web App with Ngrok

Ngrok is primarily used to test and debug webhooks. However, it's also useful for sharing an early MVP from your local device with colleagues and friends before deployment.

Ngork is a handy tool when building with the Django Rest Framework(DRF). DRF is a set of tools for building web applications with a variety of endpoints, known as APIs. For example, large platforms such as Twitter and Facebook have APIs for programmers to request information and automate processes such as posting and liking by making requests to different endpoints. When creating your own API, it's important to test such endpoints on your local development server before deployment. Ngrok enables you to do so.

https://www.ordinarycoders.com/blog/article/django-ngrok

Top comments (0)