web-view 0.4.0

Rust bindings for webview, a tiny cross-platform library to render web-based GUIs for desktop applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  "scripts": {
    "build": "pulp build --to dist/app.js",
    "watch": "pulp -w build --to dist/app.js",
    "watch-output": "pulp -w build",
    "watch-fast": "webpack --entry ./entry.js --output-filename dist/app.js --progress --watch",
    "reload": "browser-sync start --server --files \"dist/**/*.*, index.html, *.css\" --no-ghost-mode --port 2345 --no-open",
    "dev-slow": "npm-run-all -p -r watch reload",
    "dev": "npm-run-all -p -r watch-output watch-fast reload",
    "prod": "pulp browserify -O --to build/app.js && parcel build build/app.js && inline-assets --htmlmin --cssmin index.html dist/bundle.html",
    "test": "pulp test"
  }
}