Lepton is a lean GitHub Gist Desktop Client based on Electron. Checkout the latest release.
- Group your gists by languages
- Create/Edit/Delete gists
- Instant search
- Custom tags
- Markdown rendering
- Cross-platform support
Organize | Markdown Rendering | Immersive Mode (⌘/Ctrl + i) |
---|---|---|
Search (⇧ + Space) | Custom Tags | GitHub Login |
---|---|---|
- Framework: Electron
- Bundler: Webpack, Babel, electron-builder
- Language: ES2015, Sass
- Library: React, Redux, Redux Thunk, Redux Form
- Lint: ESLint
- Download released binaries(macOS/Windows/Linux) from here: https://github.com/hackjutsu/Lepton/releases
- Install via Homebrew (macOS)
brew cask install lepton
Only tested with Node.js v6.9.x
Clone the repository.
$ git clone git@github.com:hackjutsu/Lepton.git
Install the dependencies.
$ cd Lepton && npm i
Register your application, and put your client id and client secret in ./configs/account.js
.
module.exports = {
client_id: <your_client_id>,
client_secret: <your_client_secret>
}
$ npm run pack
$ npm run start
Read electron-builder docs and checkout Code Signing before building the installer app.
Build app for macOS.
$ npm run dist -- -m
Build app for Windows.
$ npm run dist -- -w
Build app for Linux.
$ npm run dist -- -l
Build app for macOS, Windows and Linux.
$ npm run dist -- -wml
Build app for the current OS with the current arch.
$ npm run dist
Lepton depends on GitHub API to detect the language. If this fails, you can still put // vim: syntax=<your_language>
at the top of the gist to specify the language.
// vim: syntax=javascript
let test = 'This is a javascript file'
Currently, Lepton only supports the search for the gist's description field. This is limited by GitHub's API support.
[title] description #tag1 #tag2
Yes. Copy and paste the following snippet to ~/.leptonrc
. Create the file if it does not exist, and don't forgot to change the address to your own one.
{
"proxy": {
"enable": true,
"address": "socks://localhost:1080"
}
}
Please submit an issue ticket in the GitHub Issue page. Or, if you like, send a pull request.
hackjutsu | wujysh | DNLHC | meilinz | lcgforever | Calinou |
rogersachan | passerbyid | YYSU | cixuuz |
MIT © hackjutsu