# mseries-bootstrap

mseries-dev-server provides a quick way to graphql query you application using the web browser.

<hr>

## Installation
```shell
$ npm i @spring-global/mseries-dev-server -g
```

<hr>

## Configuring for development in a product branch:
```shell
$ 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)
```typescript

application.mSeriesDidMount((firstNavigation: boolean) => {
    // ...

    if (__DEV__) {
        const DevTools = require("./devTools");
        DevTools.mSeriesDevClient.init("http://YOUR LOCAL IP ADDRESS ON PORT 5000", 5000);
    }

    // ...

});


```