Go to file
Gregory Schier 3ced73f903 Color Themes! (#77)
* Got 3 schemes

* Finished color picke
2017-01-20 13:54:03 -08:00
app Color Themes! (#77) 2017-01-20 13:54:03 -08:00
scripts CC style fixes and relax URL encoding 2016-11-17 13:22:19 -08:00
webpack Color Themes! (#77) 2017-01-20 13:54:03 -08:00
.editorconfig Got a pretty good skeleton 2016-03-15 22:49:42 -07:00
.gitignore Insomnia Plus Launch (#41) 2016-11-07 12:24:38 -08:00
.nvmrc Default sync groups to auto + custom methods 2016-10-26 10:49:49 -07:00
LICENSE Initial commit 2016-04-22 20:54:26 -07:00
package.json Fixed host header in tests 2017-01-11 13:21:30 -08:00
README.md Update README 2016-11-29 17:55:53 -08:00

Insomnia REST Client Build Status

A simple REST API client, build with Electron.

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