Go to file
Gregory Schier 1c5166d27e Fixed request duplication and some other fixes (#102)
* Fixed duplication kve bug

* Fixed duplicate and some OneLineInput bugs
2017-03-03 13:10:35 -08:00
app Fixed request duplication and some other fixes (#102) 2017-03-03 13:10:35 -08:00
scripts CC style fixes and relax URL encoding 2016-11-17 13:22:19 -08:00
webpack Added eslint and fixed all problems (#101) 2017-03-03 12:09:08 -08:00
.babelrc Verify Before Syncing (#98) 2017-03-02 17:44:07 -08:00
.editorconfig Got a pretty good skeleton 2016-03-15 22:49:42 -07:00
.eslintignore Added eslint and fixed all problems (#101) 2017-03-03 12:09:08 -08:00
.eslintrc Added eslint and fixed all problems (#101) 2017-03-03 12:09:08 -08:00
.gitignore Added eslint and fixed all problems (#101) 2017-03-03 12:09:08 -08:00
.nvmrc Default sync groups to auto + custom methods 2016-10-26 10:49:49 -07:00
appveyor.yml Remove yarn for now (#93) 2017-02-27 13:10:34 -08:00
LICENSE Initial commit 2016-04-22 20:54:26 -07:00
package.json Added eslint and fixed all problems (#101) 2017-03-03 12:09:08 -08:00
README.md Content/update readme (#85) 2017-02-15 12:45:05 -08:00

Insomnia REST Client Build Status Build status

Insomnia is a cross-platform REST client, built on top of Electron.

Insomnia REST Client Screenshot

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 to Folder

Build all assets into ./build/

npm run build