insomnia/README.md
Gregory Schier 1cf1037c93 Better Redux (#43)
* Started refactoring redux stores

* Oh God huge refactor here

* Sync contenst updates and nested folders

* Fixed render tests

* A bunch of tweaks
2016-11-16 09:18:39 -08:00

954 B

Insomnia REST Client Build Status

An elegant and simple REST API client.

Insomnia REST Client

Setup

# Install and use correct Node version
nvm install 

# Install dependencies
npm install

Run Development

When you run the development environment, it will start both a dev server and an Electron instance. The dev server is part of Webpack and is used to control hot module replacement of UI components. This means that, if you change a component file, you will not need to refresh the app to see the change. It will inject the new component immediately.

npm run dev

Build for Production

Build all assets into ./build/

npm run build

Build and Package Installers

Build binary files for each platform into ./dist/

npm run package