Official electron build of diagrams.net
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
David Benson ad326418d2
Update README.md
14 hours ago
.github Adds zip to release 1 week ago
build Updated dependencies (notarize is not tested) 2 months ago
doc Updates to draw 7.1.6 8 years ago
drawio@cc956e4a84 Updates for release 2 weeks ago
src/main Merge branch 'dev' of github.com:jgraph/drawio-desktop into dev 4 weeks ago
.gitignore Corrects zero index page references [jgraph/drawio-desktop#627] 4 weeks ago
.gitmodules Update .gitmodules 3 years ago
.travis.yml Fix for missing altool 5 years ago
CODE_OF_CONDUCT.md Update CODE_OF_CONDUCT.md 1 year ago
DEVELOPMENT.md Excluded WEB-INF from installer, dist size reduced by one third. Dev doc added. Misc cleanup. 8 years ago
LICENSE Create LICENSE 8 years ago
README.md Update README.md 14 hours ago
SECURITY.md Create SECURITY.md 3 years ago
appveyor.yml Splits appx build into own builder 5 years ago
dependency-diagram.png Adds diagram data to PNG file 7 years ago
electron-builder-appx.json Fixed treating js files as modules in build scripts 1 year ago
electron-builder-linux-mac.json Updated dependencies (notarize is not tested) 2 months ago
electron-builder-snap.json Fixed treating js files as modules in build scripts 1 year ago
electron-builder-win-arm64.json Removed deprecated publisherName 2 months ago
electron-builder-win.json Switches from win portable to zip 2 weeks ago
electron-builder-win32.json Switches from win portable to zip 2 weeks ago
package.json Updates for release 2 weeks ago
preload.js ver test 8 years ago
screenshot.png screenshot 8 years ago
sync.cjs Upgraded dependencies (including using Electron 30) and using ES Modules 1 year ago
yarn.lock Updates for release 2 weeks ago

README.md

About

drawio-desktop is a diagramming desktop app based on Electron that wraps the core draw.io editor.

Download built binaries from the releases section.

Can I use this app for free? Yes, under the apache 2.0 license. If you don't change the code and accept it is provided "as-is", you can use it for any purpose.

Security

draw.io Desktop is designed to be completely isolated from the Internet, apart from the update process. This checks github.com at startup for a newer version and downloads it from an AWS S3 bucket owned by Github. All JavaScript files are self-contained, the Content Security Policy forbids running remotely loaded JavaScript.

No diagram data is ever sent externally, nor do we send any analytics about app usage externally. There is a Content Security Policy in place on the web part of the interface to ensure external transmission cannot happen, even by accident.

Security and isolating the app are the primarily objectives of draw.io desktop. If you ask for anything that involves external connections enabled in the app by default, the answer will be no.

Support

Support is provided on a reasonable business constraints basis, but without anything contractually binding. All support is provided via this repo. There is no private ticketing support for non-paying users.

Purchasing draw.io for Confluence or Jira does not entitle you to commercial support for draw.io desktop.

Developing

draw.io is a git submodule of drawio-desktop. To get both you need to clone recursively:

git clone --recursive https://github.com/jgraph/drawio-desktop.git

To run this:

  1. npm install (in the root directory of this repo)
  2. export DRAWIO_ENV=dev if you want to develop/debug in dev mode.
  3. npm start in the root directory of this repo runs the app. For debugging, use npm start --enable-logging.

Note: If a symlink is used to refer to drawio repo (instead of the submodule), then symlink the node_modules directory inside drawio/src/main/webapp also.

To release:

  1. Update the draw.io sub-module and push the change. Add version tag before pushing to origin.
  2. Wait for the builds to complete (https://travis-ci.org/jgraph/drawio-desktop and https://ci.appveyor.com/project/davidjgraph/drawio-desktop)
  3. Go to https://github.com/jgraph/drawio-desktop/releases, edit the preview release.
  4. Download the windows exe and windows portable, sign them using signtool sign /a /tr http://rfc3161timestamp.globalsign.com/advanced /td SHA256 c:/path/to/your/file.exe
  5. Re-upload signed file as draw.io-windows-installer-x.y.z.exe and draw.io-windows-no-installer-x.y.z.exe
  6. Add release notes
  7. Publish release

Note: In Windows release, when using both x64 and is32 as arch, the result is one big file with both archs. This is why we split them.

Local Storage and Session Storage is stored in the AppData folder:

  • macOS: ~/Library/Application Support/draw.io
  • Windows: C:\Users\<USER-NAME>\AppData\Roaming\draw.io\

Not open-contribution

draw.io is closed to contributions (unless a maintainer permits it, which is extremely rare).

The level of complexity of this project means that even simple changes can break a lot of other moving parts. The amount of testing required is far more than it first seems. If we were to receive a PR, we'd have to basically throw it away and write it how we want it to be implemented.

We are grateful for community involvement, bug reports, & feature requests. We do not wish to come off as anything but welcoming, however, we've made the decision to keep this project closed to contributions for the long term viability of the project.