jduckles / RStudio-electron

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RStudio Electron

A simple simple electron app to connect to my RStudio Server within an electron window.

This is a minimal Electron application based on the Quick Start Guide within the Electron documentation.

To Use

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/jduckles/RStudio_electron

# Go into the repository
cd RStudio_electron

# Edit main.js
// SET THIS TO YOUR RSTUDIO SERVER, NOT MINE
mainWindow.loadURL('https://yourserver.com:8787')

# Edit package.json to set app name and other metadata

# Install dependencies
npm install

# Run the app
npm start

# To compile to a stand-alone app
npm install -g electron
npm install -g electron-packager
electron-packager . --out dist/

# Build for other platforms 
electron-packager . --platform win32 --out dist/
electron-packager . --platform darwin --out dist/
electron-packager . --platform linux --out dist/

License

CC0 1.0 (Public Domain)

About

License:Creative Commons Zero v1.0 Universal


Languages

Language:JavaScript 100.0%