Giter VIP home page Giter VIP logo

Comments (3)

gabrielcsapo avatar gabrielcsapo commented on August 17, 2024

I am currently trying to experiment with https://mswjs.io/docs/getting-started/integrate/browser as a way to show network requests in the network tab while continuing to use pretenderjs. I will update this issue with any findings.

from pretender.

gabrielcsapo avatar gabrielcsapo commented on August 17, 2024

This is the demo code I ran to get some output from my experiment

<!DOCTYPE html>
<head>
  <meta charset="UTF-8">
  <title>Pretenderjs</title>
</head>
<body>
  <script src="./dist/pretender.bundle.js"></script>
  <script>
    (async function() {
      const server = new Pretender(function() {
        this.get('/hello-world', request => [200, {}, "hello world!"]);
      });

      server.unhandledRequest = function(verb, path, request) {
        console.log(verb, path, request);
      }
      
      await fetch('/hello-world');
    }())
  </script>
</body>
</html>

Screen Shot 2022-06-09 at 11 38 29 PM

Screen Shot 2022-06-09 at 11 38 30 PM

from pretender.

gabrielcsapo avatar gabrielcsapo commented on August 17, 2024

unhandled requests work as well!

<!DOCTYPE html>
<head>
  <meta charset="UTF-8">
  <title>Pretenderjs</title>
</head>
<body>
  <script src="./dist/pretender.bundle.js"></script>
  <script>
    (async function() {
      const server = new Pretender(function() {
        this.get('/hello-world', request => [200, {}, "hello world!"]);
      });

      server.unhandledRequest = function(verb, path, request) {
        console.log('unhandledRequest', verb, path, request);
      }
      
      await fetch('/hello-world');
      await fetch('/hello');
    }())
  </script>
</body>
</html>

Screen Shot 2022-06-09 at 11 45 40 PM

from pretender.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.