Skip to content

scaljeri/oh-my-mock

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Master workflow Feature workflow

Buy me a coffee

OhMyMock

OhMyMock is a Chrome Extension that can mock API responses in the browser. It works as follows: The first time an API request is made it only caches the response, but the next time it will mock the request and reply with the cached response. It is also possible to modify responses or status codes. This extension is especially useful for Frontend development and works well with frameworks like Angular, React or Vue. OhMyMock can serve JSON, HTML, Images and a lot more. Please make a feature request if you have a response which is not supported!!

There is an article on medium.com which describes OhMyMock in great detail here.

If you have the extension install you can see how it works with XMLHttpRequest and Fetch request on the demo page.

By default OhMyMock is disabled and you need to enabled it, otherwise it will not cache or mock API responses.

alt text alt text

Installation

OhMyMock can be install from the chrome extension store, but you can also compile the source and use that instead if you like. This is what you would do if you want to do OhMyMock develop.

To install it from source checkout this repository and run the following commands

$> yarn
$> yarn build

The compiled code is stored in "./dist"

Navigate in Chrome to chrome://extensions and enable development mode and upload the "./dist" folder via the Load unpacked button. Thats it.

Setup for development

First install all dependencies

$> yarn

Start the development web server and watchers

$> yarn watch

The test page will be available at http://localhost:8000

Everytime you hit save the project will rebuild, but after each rebuild you have to reload the extension and test page your self!

Project structure

This project consists of a couple of different part, each with a specific task. Those parts are:

  • ./scripts - Tooling
  • ./test-site - Webserver (test/demo site)
  • ./libs/nodejs-sdk - sdk for serving mocks from files
  • ./src/app - angular app, the OhMyMock popup
  • ./src/content - the extension content script, needed to pass messages between the angular app and the injected script
  • ./src/injected - this is where mocking takes place (e.g. patching of Fetch and XmlHttpRequest)
  • ./src/shared - code shared between all parts
  • ./src/background - the extension's background script
OhMyMock CDK

The cdk enables you to create a NodeJs server which connects with the chrome extension. This allows you to serve responses in an easy way using a NodeJs server. This way it is possible to serve file content as responses. If the server doesn't have a response for a specific request, OhMyMock will then look in the cache and serve that if it exists.

background.js

For all tabs in the chrome browser there will be just one instance running of this script. It is always active and when the OhMyMock icons is clicked it will open the OhMyMock popup (angular app). If you are using the OhMyMock SDK, the background script will establish the websocket connection.

content script

Each tab has its own instance of the content script. It takes care of two things

  1. Inject code into the context of the website

  2. It receives every request from the injected script. It is the task of the content script to find a mock (the response that will be served). This is a two step process:

    1. If there is a websocket connection (in case you use the SDK) the request is forwarded to the NodeJs.
    2. If there is no websocket connection or the NodeJs doesn't serve a response, it looks inside the cached responses.
injected script

The injected script remains dormant until OhMyMock is enabled. If active it will patch window.fetch and window.XmlHttpRequest. This way it is in full control of all requests. When a request is made 3 things can happen:

  1. Every request is dispatched to the content script. If the content script doesn't find a response the call will pass through to the API. OhMyMock will cache the response.
  2. If there is a cached response, but it is not active, the call will pass through to the API.
  3. There is an active cache and it will be served as the response

Finally, if OhMyMock is disabled or the popup is closed, the original Fetch and XmlHttpRequest objects are restored, as if nothing ever happend.

Angular app

The angular application is where you can interact with OhMyMock. Here you can see which responses are cached, which are active, etc. Here you can also create responses manually.

Contributors


Lucas Calje

Cong Yu

Alexandr Plokhih

Known chrome issues

About

Experiment with chrome extensions and angular

Resources

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •