An electron desktop app for micro.blog.
You can grab the latest build from the releases page. Currently there is only a Mac OS X release, I am working on getting builds for other OS’s. Electron allows to cross compile, but until I can test on the other OS’s I don’t want to publish releases for them just yet.
- NodeJS (>7.10.0)
- NPM (5.0.0)
Clone this repo or a fork of the repo, all the commands below are now run from the root /microreader directory
- cd into
microreader
- Install NPM Modules -
npm install
Once you have installed the NPM Modules:
npm run dev
will start electron indevelopment
mode and startwebpack
dev server - You should see an electron window open, on first open it will appear blank, once webpack has compiled the assets you can refresh the electron window to get the running application
Available commands to be run from the root folder as npm run [command]
build
- Used to compiles assets and build Mac OS X applicationdev
- Used for single development mode - it runsstart:electron
andwebpack:dev
togetherstart:electron
- Will start the electron process in development modeapp:macosx
- Compiles the application to Mac OS X and puts the output in a folder /release-buildswebpack
- Compiles the JS to /jswebpack:dev
- Runs webpack dev server, used for development to make things faster