web-pal / DBGlass
- суббота, 8 октября 2016 г. в 03:14:07
JavaScript
PostgreSQL client built with Electron.
Simple cross-platform PostgreSQL client. Built with Electron, React, Redux, FixedDataTable.
You can either
Extract it somewhere, and then run the executable.
or
To clone and run this repository you'll need Git and Node.js (which comes with npm) installed on your computer. From your command line:
# Clone this repository
git clone https://github.com/web-pal/dbglass
# Go into the repository
cd dbglass
# Install dependencies and run the app
npm install && npm run dev
App will be running in development mode at this point, in which you can:
See electron-debug for more information.
We add some module's peerDependencies
to ignore option as default for application size reduction.
babel-core
is required by babel-loader
and its size is ~19 MBnode-libs-browser
is required by webpack
and its size is ~3MB.Note: If you want to use any above modules in runtime, for example:
require('babel/register')
, you should move them formdevDependencies
todependencies
.
npm run package
Please checkout Building windows apps from non-windows platforms.