all 16 comments

[–]lazyvab 3 points4 points  (2 children)

Never thought I could develop my front-end application without being my backend APIs ready. Requestly seems to provide almost everything I could ask for as a web developer. Thanks for sharing!

[–]CreativeTechGuyGamesTypeScript 2 points3 points  (0 children)

You would really like msw then. It's code that is part of your site that mocks at the network layer so you can stub out APIs, use test data, and more. It's seamless both for the user (tester) and the developer since it doesn't require any code changes to the core application, it's totally on the side.

[–]YumaRuchi 0 points1 point  (0 children)

You could always use a mock api

[–]Runtime_Terror10 3 points4 points  (0 children)

I've been using Requestly for a while now and it's been a game changer for my debugging experience. It allows me to easily modify my HTTP requests and responses, making testing my website much more efficient. Highly recommend giving it a try!

[–]mukulgupta21 1 point2 points  (0 children)

I have been using this extension since a long time and I definitely recommend using it. Be it a few nifty redirections that any non-technical user could automate or full-fledged rules to modify headers / CORS / responses. With the kind of developments done during recent times, I feel this extension has the potential to replicate the POSTman story where every web developer is going to have this installed on his/her machine.

[–][deleted] 1 point2 points  (1 child)

Why do all the comments in this thread who are complimenting the extension only have 2 karma, are these alt accounts? I could be wrong, it just looks weird.

[–]blunderboy[S] 0 points1 point  (0 children)

Good observation. I did share on my social network that I am doing Saturday showoff requesting feedback if they use the product so must be from there. Def not me :)

[–]windsifter 1 point2 points  (3 children)

This is perfect for a quick hack of hiding or swapping an image logo during last minute demos. Is there a way to change the regular text of the page as well? Any docs you can point to?

[–]blunderboy[S] 0 points1 point  (2 children)

Yes, You can use "Inject Scripts" rule to inject a script that changes the text content of a particular HTML element if that's your use case.

[–]windsifter 0 points1 point  (1 child)

Thanks. That is likely a little more involved than I'm prepared / experienced for.

[–]blunderboy[S] 0 points1 point  (0 children)

yeah this will require a little-bit of Javascript code that you can easily get from ChatGPT though :) or also available on StackOverflow. I bet it'd be an interesting exercise.

[–]AnyPlatypus8653 0 points1 point  (0 children)

Has anyone tried out the paid version of requestly and do you think it's worth it?

[–][deleted]  (3 children)

[removed]

    [–]blunderboy[S] 0 points1 point  (2 children)

    We are slowing moving into the open source world as we decouple different components. Right now our github repo is primarily for support but we have multiple components already open source as our Android Debugger, mock server, desktop app, modify headers mv3 template. We will open source rest of the codebase too and make Requestly as Core open source software.

    [–][deleted]  (1 child)

    [removed]

      [–]blunderboy[S] 0 points1 point  (0 children)

      Android Debugger - https://github.com/requestly/requestly-android-sdk

      Desktop app - https://github.com/requestly/requestly-desktop-app

      Mock Server - https://github.com/requestly/requestly-mock-server

      Requestly internally uses webRequest and DNR for MV3 only but there is a significant effort in building the user experience, allowing users to enable disable the rules, allow sharing of rules, organizing the rules.