0.0.8 • Published 3 years ago

@spring-global/mseries-dev-server v0.0.8

Weekly downloads
2
License
ISC
Repository
-
Last release
3 years ago

mseries-bootstrap

mseries-dev-server provides a quick way to graphql query you application using the web browser.

Installation

$ npm i @spring-global/mseries-dev-server -g

Configuring for development in a product branch:

$ npx mseries-dev-server

Don't forget to update you IP Address inside the App.tsx Also don't forget to enable the JS DEv Mode on the React (enabled by default)

application.mSeriesDidMount((firstNavigation: boolean) => {
    // ...

    if (__DEV__) {
        const DevTools = require("./devTools");
        DevTools.mSeriesDevClient.init("http://YOUR LOCAL IP ADDRESS ON PORT 5000", 5000);
    }

    // ...

});